Skip to content

Commit fa8b2c8

Browse files
cailmdaleyclaude
andcommitted
ci: run full test suite on PRs to develop and on push to develop
The CI workflow only triggered on PRs to main/master, but develop is now the integration branch that feature and dependabot PRs target — so the test suite never ran on them. Add develop to the pull_request branch filter. Also add a push trigger on develop: pull_request only re-runs when the PR itself changes, not when the base advances, so two PRs that each pass against develop independently can break it once both merge. Testing on push to develop catches that post-merge collision on the actual HEAD. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 7d1155d commit fa8b2c8

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/ci-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
branches:
66
- main
77
- master
8+
- develop
9+
push:
10+
branches:
11+
- develop
812

913
jobs:
1014

0 commit comments

Comments
 (0)