harb/.woodpecker/passthrough.yaml
johba 4485a7579a 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>
2026-03-25 13:07:20 +00:00

12 lines
150 B
YAML

kind: pipeline
type: docker
name: passthrough
when:
- event: pull_request
steps:
- name: pass
image: alpine
commands:
- echo "ok"