Skip to content

Commit 4a829c7

Browse files
authored
ci(generate_prs): Add option to disable strategy.fail-fast (#507)
1 parent 5d92d77 commit 4a829c7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/generate_prs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,18 @@ on:
1515
description: "Dry Run (PRs are not generated)"
1616
type: boolean
1717
default: true
18+
fail-fast:
19+
description: "Fail fast (if one job fails, all other are cancelled)"
20+
type: boolean
21+
default: true
1822

1923
permissions: {}
2024

2125
jobs:
2226
create-prs:
2327
runs-on: ubuntu-latest
2428
strategy:
29+
fail-fast: ${{ inputs.fail-fast }}
2530
# If you add a new repository here, also add it to config/repositories.yaml
2631
matrix:
2732
repository:

0 commit comments

Comments
 (0)