ci: add dev branch to CI pull_request trigger
PR #306 was retargeted from main → dev. The CI workflow only triggered on pull_request targeting main, so CI silently stopped running after the retarget. This adds dev to both push and pull_request branch lists so CI runs on PRs and pushes targeting dev. Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
committed by
GitHub
parent
2577e33c50
commit
db43efc6e6
@@ -2,9 +2,9 @@ name: CI
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches: [main, dev]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main, dev]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
ref:
|
ref:
|
||||||
|
|||||||
Reference in New Issue
Block a user