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:
root
2026-07-04 22:50:02 +00:00
parent 895858c60a
commit 031a8253c7
+7
View File
@@ -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: