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:
parent
d54b055cd8
commit
4485a7579a
1 changed files with 12 additions and 0 deletions
12
.woodpecker/passthrough.yaml
Normal file
12
.woodpecker/passthrough.yaml
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: passthrough
|
||||||
|
|
||||||
|
when:
|
||||||
|
- event: pull_request
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: pass
|
||||||
|
image: alpine
|
||||||
|
commands:
|
||||||
|
- echo "ok"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue