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 c5a3a54 commit 0a46f00Copy full SHA for 0a46f00
.github/workflows/default.yml
@@ -7,9 +7,19 @@ on:
7
branches: [main]
8
workflow_dispatch:
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.
11
concurrency:
- group: ${{ github.workflow }}-${{ github.ref }}
12
- cancel-in-progress: true
+ group: >-
13
+ ${{
14
+ github.actor == 'dependabot[bot]' &&
15
+ 'dependabot' ||
16
+ format('{0}-{1}', github.workflow, github.ref)
17
+ }}
18
+ cancel-in-progress: >-
19
20
+ github.actor != 'dependabot[bot]' &&
21
+ github.ref != 'refs/heads/main'
22
23
24
jobs:
25
# Stage 1: Parallel analysis jobs (no build required)
0 commit comments