From 4485a7579ad1fe1ba70f60e4c4efe49ebf3e4713 Mon Sep 17 00:00:00 2001 From: johba Date: Wed, 25 Mar 2026 13:07:20 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20Woodpecker=20reports=20error=20for=20evi?= =?UTF-8?q?dence-only=20PRs=20=E2=80=94=20no=20matching=20pipeline=20trigg?= =?UTF-8?q?ers=20(#1153)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- .woodpecker/passthrough.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .woodpecker/passthrough.yaml diff --git a/.woodpecker/passthrough.yaml b/.woodpecker/passthrough.yaml new file mode 100644 index 0000000..2af0951 --- /dev/null +++ b/.woodpecker/passthrough.yaml @@ -0,0 +1,12 @@ +kind: pipeline +type: docker +name: passthrough + +when: + - event: pull_request + +steps: + - name: pass + image: alpine + commands: + - echo "ok"