From aa481dad2e6729c98883977f317c6751927e1550 Mon Sep 17 00:00:00 2001 From: Yogesh Chaudhary Date: Fri, 17 Jul 2026 20:16:33 +0530 Subject: [PATCH] fix: run Snyk scan on dependabot PRs --- .github/workflows/snyk.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index 998e6e85..32745595 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -29,8 +29,8 @@ jobs: runs-on: ubuntu-latest steps: - - if: github.actor == 'dependabot[bot]' || github.event_name == 'merge_group' - run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection. + - if: github.event_name == 'merge_group' + run: exit 0 # Skip unnecessary test runs for merge queues. Artifically flag as successful, as this is a required check for branch protection. - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: