From 45c19594aa34d5eef21fa9a556b2640ab637e84d Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Mon, 4 May 2026 18:52:53 +0000 Subject: [PATCH] ci: add dev branch to pull_request trigger MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same fix as headlamp-kube-vip-plugin#45 — PRs targeting dev branch were not triggering CI because the pull_request branch filter only listed main. This ensures CI also runs on PRs targeting dev. 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 cdcca8a..866f1b7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,7 +4,7 @@ on: push: branches: ['**'] pull_request: - branches: [main] + branches: [main, dev] workflow_dispatch: permissions: -- 2.52.0