fix: add push trigger for master branch to CI pipeline
Previously the pipeline only triggered on pull_request events. Direct pushes to master bypassed all validation (auth, lint, ai-review). Now push to master also triggers the pipeline.
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
name: PR Pipeline — Authorize → Validate → Review → Merge
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
paths:
|
||||
- '**.prose.md'
|
||||
- 'scripts/**.sh'
|
||||
- '**.yaml'
|
||||
- '**.yml'
|
||||
pull_request:
|
||||
types: [opened, synchronize, reopened]
|
||||
paths:
|
||||
|
||||
Reference in New Issue
Block a user