diff --git a/.github/workflows/pr-verify.yml b/.github/workflows/pr-verify.yml index 690ec2d..dd4d6e4 100644 --- a/.github/workflows/pr-verify.yml +++ b/.github/workflows/pr-verify.yml @@ -4,7 +4,7 @@ on: pull_request: branches: - main - types: [opened, synchronize, reopened, ready_for_review] + types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] permissions: {} @@ -12,7 +12,7 @@ jobs: build-and-test: permissions: contents: read - if: github.event.pull_request.draft == false + if: github.event.pull_request.draft == false && github.event.pull_request.user.login != 'dependabot[bot]' runs-on: ubuntu-latest steps: - uses: frasermolyneux/actions/dotnet-ci@dotnet-ci/v1.1