From 031a8253c746dd424c34567c61ff0602ce5c9d63 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 4 Jul 2026 22:50:02 +0000 Subject: [PATCH] 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. --- .gitea/workflows/pr-pipeline.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitea/workflows/pr-pipeline.yaml b/.gitea/workflows/pr-pipeline.yaml index d20aa7d..3aa7f52 100644 --- a/.gitea/workflows/pr-pipeline.yaml +++ b/.gitea/workflows/pr-pipeline.yaml @@ -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: