From 0ff1bb09455aebecfb2df75e7a42f2c089c2f9a9 Mon Sep 17 00:00:00 2001 From: "Yan-Luca L." Date: Mon, 24 Jun 2024 19:09:22 +0200 Subject: [PATCH] =?UTF-8?q?.github/workflows/reviewdog.yml=20gel=C3=B6scht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/reviewdog.yml | 40 --------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/reviewdog.yml 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