fix: Woodpecker reports error for evidence-only PRs — no matching pipeline triggers (#1153)

Add a lightweight always-run passthrough pipeline that triggers on all PRs
and exits 0, ensuring every PR gets at least one successful CI status.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
johba 2026-03-25 13:07:20 +00:00
parent d54b055cd8
commit 4485a7579a

View file

@ -0,0 +1,12 @@
kind: pipeline
type: docker
name: passthrough
when:
- event: pull_request
steps:
- name: pass
image: alpine
commands:
- echo "ok"