File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 branches :
1111 - " **"
1212
13+ # This ensures any in-progress workflows in the same branch or PR
14+ # are cancelled if there is a fresh push.
15+ concurrency :
16+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref }}
17+ cancel-in-progress : true
18+
1319permissions : {} # workflow-level default — deny all
1420
1521jobs :
Original file line number Diff line number Diff line change 55 branches : [master]
66 pull_request :
77 branches : [master]
8+
89permissions : {} # workflow-level default — deny all
910
11+ concurrency :
12+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref }}
13+ cancel-in-progress : true
14+
1015jobs :
1116 glean-probe-scraper :
1217 permissions :
Original file line number Diff line number Diff line change 1010 - " **"
1111 workflow_dispatch : {}
1212
13+ # This ensures any in-progress workflows in the same branch or PR
14+ # are cancelled if there is a fresh push.
15+ concurrency :
16+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref }}
17+ cancel-in-progress : true
18+
1319env :
1420 RUST_VERSION : " 1.91" # RUST_VER
1521 PYTHON_VERSION : " 3.12" # PY_VER
Original file line number Diff line number Diff line change 1010 - " **"
1111 workflow_dispatch : {}
1212
13+ # This ensures any in-progress workflows in the same branch or PR
14+ # are cancelled if there is a fresh push.
15+ concurrency :
16+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref }}
17+ cancel-in-progress : true
18+
1319env :
1420 RUST_VERSION : " 1.91"
1521 PYTHON_VERSION : " 3.12"
@@ -251,4 +257,3 @@ jobs:
251257 glob : " *.xml"
252258 parent : false
253259 process_gcloudignore : false
254-
Original file line number Diff line number Diff line change 66 branches : [master, main]
77 # paths: ['docs/**.md'] # API docs need building always
88
9+ # This ensures any in-progress workflows in the same branch or PR
10+ # are cancelled if there is a fresh push.
911concurrency :
10- group : github-pages
11- cancel-in-progress : false # Skip any intermediate builds but finish deploying
12+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref }}
13+ cancel-in-progress : true # Skip any intermediate builds but finish deploying
1214
1315jobs :
1416 build-mdbook :
Original file line number Diff line number Diff line change 1010 - " **"
1111 workflow_dispatch : {}
1212
13+ # This ensures any in-progress workflows in the same branch or PR
14+ # are cancelled if there is a fresh push.
15+ concurrency :
16+ group : ${{ github.workflow }}-${{ github.head_ref || github.ref }}
17+ cancel-in-progress : true
18+
1319env :
1420 RUST_VERSION : " 1.91" # RUST_VER
1521 PYTHON_VERSION : " 3.12" # PY_VER
@@ -278,4 +284,3 @@ jobs:
278284 glob : " *.xml"
279285 parent : false
280286 process_gcloudignore : false
281-
You can’t perform that action at this time.
0 commit comments