6dd76b25cf
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>
14 lines
213 B
YAML
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
|