File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 6
6
workflow_dispatch : {}
7
7
jobs :
8
8
publish :
9
+ # ########################
10
+ # Force Github action to run only a single job at a time (based on the group name)
11
+ # This is to prevent "race-condition" in publishing a new version of doc to `gh-pages` (#365)
12
+ # ########################
13
+ concurrency :
14
+ group : on-merge-to-main
9
15
runs-on : ubuntu-latest
10
16
steps :
11
17
- name : " Checkout"
Original file line number Diff line number Diff line change 8
8
# This is to prevent "race-condition" in publishing a new version of doc to `gh-pages` (#365)
9
9
# ########################
10
10
concurrency :
11
- group : on- release-publish
11
+ group : release
12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : " Checkout"
Original file line number Diff line number Diff line change 3
3
workflow_dispatch : {}
4
4
jobs :
5
5
run :
6
+ # ########################
7
+ # Force Github action to run only a single job at a time (based on the group name)
8
+ # This is to prevent "race-condition" in building e2e tests infrastructure
9
+ # ########################
10
+ concurrency :
11
+ group : e2e-tests
6
12
runs-on : ubuntu-latest
7
13
permissions :
8
14
id-token : write # needed to interact with GitHub's OIDC Token endpoint.
You can’t perform that action at this time.
0 commit comments