You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there is a single condition for whole pipeline files named branches. As woodpecker will probably support more conditions in the future like #86 and to match the way conditions for pipeline-steps are working it would be nice to move the branch condition below the when keyword.
pipeline:
build:
image: golang
commands:
- go build
- go test
when:
branch: [master, develop]
-branches: [ master, develop ]+when:+ branch: [master, develop]
The text was updated successfully, but these errors were encountered:
Currently there is a single condition for whole pipeline files named
branches
. As woodpecker will probably support more conditions in the future like #86 and to match the way conditions for pipeline-steps are working it would be nice to move the branch condition below thewhen
keyword.The text was updated successfully, but these errors were encountered: