From 02743e84f50a239898603507b287f1f027a2ede4 Mon Sep 17 00:00:00 2001 From: Jack Amadeo Date: Mon, 5 Jan 2026 15:07:49 -0500 Subject: [PATCH] Skip the smoke tests for dependabot PRs (#6337) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/pr-smoke-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-smoke-test.yml b/.github/workflows/pr-smoke-test.yml index 8c5099b5..22daf2ba 100644 --- a/.github/workflows/pr-smoke-test.yml +++ b/.github/workflows/pr-smoke-test.yml @@ -18,8 +18,8 @@ name: Live Provider Tests jobs: check-fork: runs-on: ubuntu-latest - # Skip entire workflow for PRs from forks (they don't have access to secrets) - if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository + # Skip entire workflow for fork PRs and dependabot PRs (they don't have access to secrets) + if: github.actor != 'dependabot[bot]' && (github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository) steps: - run: echo "Not a fork PR - proceeding with smoke tests"