Document Woodpecker multi-pipeline secret validation quirk #364
Labels
No labels
domain:backend
domain:devops
domain:frontend
status:approved
status:in-progress
status:needs-fix
status:qa
type:bug
type:devops
type:feature
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
ldraney/pal-e-platform#364
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Type
Spike
Context
Discovered during T3 validation (
validation-360-2026-05-10). When a Woodpecker repo uses multi-pipeline discovery (.woodpecker/directory with multiple YAML files), Woodpecker validates secrets from ALL discovered pipelines against the triggering event type — even pipelines whosewhenconditions exclude that event.Problem
The
pal-e-platformrepo has two pipelines:.woodpecker/terraform.yaml— triggers onpush/pull_request.woodpecker/ruby-arch.yaml— triggers onmanual/cronWhen a manual pipeline is triggered, Woodpecker validates the terraform pipeline's 25 secrets against the
manualevent. If those secrets only allowpush/pull_request, the entire pipeline run errors withsecret X is not allowed to be used with pipeline event manual.Resolution Applied
Updated all 25 existing repo secrets to allow
manualandcronevents in addition topushandpull_request. This is safe but non-obvious.Deliverable