From d11e8ff338f753c5bb6cba70c685a5d7725f0435 Mon Sep 17 00:00:00 2001 From: scott lewis <33612882+dk-lockdown@users.noreply.github.com> Date: Sun, 27 Feb 2022 16:00:57 +0800 Subject: [PATCH] Revert "ftr: add reviewdogt (#106)" This reverts commit 4cb09fa696b6123e24ba54dbb0f0578c5160c65c. --- .github/workflows/reviewdog.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml index 9e987ca8..52c46584 100644 --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -20,16 +20,16 @@ name: reviewdog on: [pull_request] jobs: - reviewdog: - name: reviewdog + golangci-lint: + name: review runs-on: ubuntu-latest steps: - # ... - - uses: reviewdog/action-setup@v1 + - name: Check out code into the Go module directory + uses: actions/checkout@v2 with: - reviewdog_version: latest # Optional. [latest,nightly,v.X.Y.Z] - - name: Run reviewdog - env: - REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - reviewdog -reporter=github-pr-check -runners=golint,govet + persist-credentials: false + submodules: true + - name: golangci-lint + uses: ./.github/actions/review-dog + with: + golangci_lint_flags: "--timeout=10m" \ No newline at end of file