From 6dd76b25cfa95c72e0b066122d228a6b36834dc4 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Mon, 4 May 2026 19:22:57 +0000 Subject: [PATCH] fix: trigger CI on PRs targeting dev branch The CI workflow was only triggering for PRs to main, but kube-vip#44 is a PR targeting the dev branch. Adding 'dev' to the pull_request branches list ensures CI runs for all plugin PRs regardless of target. Co-Authored-By: Paperclip --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b2f3ef6..bb6f03a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,7 +4,7 @@ on: push: branches: [main] pull_request: - branches: [main] + branches: [main, dev] workflow_call: workflow_dispatch: -- 2.52.0