We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b99b7a commit 098c026Copy full SHA for 098c026
.github/workflows/manual.yml
@@ -8,6 +8,15 @@ on:
8
- master
9
pull_request:
10
11
+# the `concurrency` settings ensure that not too many CI jobs run in parallel
12
+concurrency:
13
+ # group by workflow and ref; the last slightly strange component ensures that for pull
14
+ # requests, we limit to 1 concurrent job, but for the master branch we don't
15
+ group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }}
16
+ # Cancel intermediate builds, but only if it is a pull request build.
17
+ cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
18
+
19
+jobs:
20
# The documentation job
21
manual:
22
name: Build manuals
0 commit comments