Only trigger CI push runs on master to avoid duplicate builds
All checks were successful
CI / ci (pull_request) Successful in 10m41s
All checks were successful
CI / ci (pull_request) Successful in 10m41s
Pushing to a branch with an open PR fired both the push and pull_request triggers for the same commit. pull_request already covers feature-branch commits, so push only needs to cover master. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
parent
4e65ef3843
commit
1cda8b6f50
1 changed files with 1 additions and 0 deletions
|
|
@ -2,6 +2,7 @@ name: CI
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
|
|
|
|||
Loading…
Reference in a new issue