This repository has been archived on 2026-06-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
headlamp-kube-vip-plugin/.github/workflows/ci.yaml
T
Chris Farhood 6dd76b25cf 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 <noreply@paperclip.ing>
2026-05-04 19:22:57 +00:00

14 lines
213 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main, dev]
workflow_call:
workflow_dispatch:
jobs:
ci:
uses: privilegedescalation/.github/.github/workflows/plugin-ci.yaml@main