diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml deleted file mode 100644 index 5ac0599..0000000 --- a/.github/workflows/reviewdog.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: reviewdog -on: - push: - branches: - - master - pull_request: -jobs: - shellcheck: - name: runner / shellcheck - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: haya14busa/action-cond@v1 - id: reporter - with: - cond: ${{ github.event_name == 'pull_request' }} - if_true: "github-pr-review" - if_false: "github-check" - - uses: reviewdog/action-shellcheck@v1 - with: - github_token: ${{ secrets.github_token }} - reporter: ${{ steps.reporter.outputs.value }} - level: warning - - hadolint: - name: runner / hadolint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: haya14busa/action-cond@v1 - id: reporter - with: - cond: ${{ github.event_name == 'pull_request' }} - if_true: "github-pr-review" - if_false: "github-check" - - uses: reviewdog/action-hadolint@v1 - with: - github_token: ${{ secrets.github_token }} - reporter: ${{ steps.reporter.outputs.value }} - level: warning