1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2026-06-03 16:35:37 +02:00
Files
woodpecker/e2e/scenarios/fixtures/10_multi_workflow_failure/scenario.json
T
2026-04-17 00:46:53 +02:00

14 lines
387 B
JSON

{
"name": "one workflow fails pipeline is failure",
"event": "push",
"expected_status": "failure",
"expected_workflows": [
{ "name": "failing", "status": "failure" },
{ "name": "passing", "status": "success" }
],
"expected_steps": [
{ "name": "ok-step", "status": "success", "exit_code": 0 },
{ "name": "bad-step", "status": "failure", "exit_code": 1 }
]
}