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 8d0cb80 commit d26aa3bCopy full SHA for d26aa3b
.github/workflows/ValidatePullRequest.yml
@@ -7,6 +7,12 @@ on:
7
branches: [main, "release/**"]
8
merge_group:
9
10
+# Cancels old running job if a new one is triggered (e.g. by a push onto the same branch).
11
+# This will cancel dependent jobs as well, such as dep_rust and dep_fuzzing
12
+concurrency:
13
+ group: ${{ github.workflow }}-${{ github.ref }}
14
+ cancel-in-progress: true
15
+
16
permissions:
17
id-token: write
18
contents: read
@@ -42,6 +48,7 @@ jobs:
42
48
secrets: inherit
43
49
with:
44
50
docs_only: ${{needs.docs-pr.outputs.docs-only}}
51
45
52
fuzzing:
46
53
needs:
47
54
- docs-pr
@@ -50,6 +57,7 @@ jobs:
57
max_total_time: 300 # 5 minutes in seconds
58
59
60
61
spelling:
62
name: spell check with typos
55
63
runs-on: ubuntu-latest
0 commit comments