We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f656eb commit 34edc77Copy full SHA for 34edc77
.github/workflows/default.yml
@@ -7,12 +7,12 @@ on:
7
branches:
8
- "main"
9
10
-# We'd like to run the pipeline for Dependabot PRs sequentially, and all other PRs in parallel, but still only one action run for each PR.
+# We'd like to run the pipeline for Dependabot PRs with up to 2 in parallel, and all other PRs in parallel, but still only one action run for each PR.
11
concurrency:
12
group: >-
13
${{
14
github.actor == 'dependabot[bot]' &&
15
- 'dependabot' ||
+ format('dependabot-{0}', github.event.number % 2) ||
16
format('{0}-{1}', github.workflow, github.ref)
17
}}
18
cancel-in-progress: >-
0 commit comments