File tree Expand file tree Collapse file tree 13 files changed +36
-0
lines changed
Expand file tree Collapse file tree 13 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
12---
23name : " Main"
34on : # yamllint disable-line rule:truthy
@@ -6,6 +7,10 @@ on: # yamllint disable-line rule:truthy
67 branches :
78 - " main"
89
10+ concurrency :
11+ group : " spicedb-benchmark-${{ github.event.pull_request.number }}"
12+ cancel-in-progress : true
13+
914permissions :
1015 # permission to update benchmark contents in gh-pages branch
1116 contents : " write"
Original file line number Diff line number Diff line change 1+ # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
12---
23name : " Build & Test"
34on : # yamllint disable-line rule:truthy
@@ -12,6 +13,9 @@ on: # yamllint disable-line rule:truthy
1213 - " checks_requested"
1314permissions :
1415 contents : " read"
16+ concurrency :
17+ group : " spicedb-test-${{ github.event.pull_request.number }}"
18+ cancel-in-progress : true
1519env :
1620 DOCKERHUB_PUBLIC_ACCESS_TOKEN : " dckr_pat_8AEETZWxu8f7FvJUk9NrpyX_ZEQ"
1721 DOCKERHUB_PUBLIC_USER : " spicedbgithubactions"
Original file line number Diff line number Diff line change 1+ # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
12---
23name : " CLA"
34on : # yamllint disable-line rule:truthy
@@ -17,6 +18,9 @@ permissions:
1718 contents : " read" # CLA signatures are stored in https://github.com/authzed/cla
1819 pull-requests : " write"
1920 statuses : " write"
21+ concurrency :
22+ group : " spicedb-cla-${{ github.event.pull_request.number }}"
23+ cancel-in-progress : true
2024jobs :
2125 cla :
2226 name : " Check Signature"
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ on: # yamllint disable-line rule:truthy
99 - " reopened"
1010permissions :
1111 contents : " read"
12+ concurrency :
13+ group : " spicedb-commit-message-${{ github.event.pull_request.number }}"
14+ cancel-in-progress : true
1215jobs :
1316 conventional-commits :
1417 name : " Lint Commit Messages"
Original file line number Diff line number Diff line change 1+ # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
12---
23name : " Update Docs Repo"
34on : # yamllint disable-line rule:truthy
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ on: # yamllint disable-line rule:truthy
1515
1616permissions :
1717 contents : " read"
18+ concurrency :
19+ group : " spicedb-changelog-${{ github.event.pull_request.number }}"
20+ cancel-in-progress : true
1821
1922jobs :
2023 changelog :
Original file line number Diff line number Diff line change 1+ # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
12---
23name : " Pull Request Labeler"
34on : # yamllint disable-line rule:truthy
@@ -7,6 +8,9 @@ on: # yamllint disable-line rule:truthy
78 - " checks_requested"
89permissions :
910 contents : " read"
11+ concurrency :
12+ group : " spicedb-pr-labeler-${{ github.event.pull_request.number }}"
13+ cancel-in-progress : true
1014jobs :
1115 triage :
1216 runs-on : " depot-ubuntu-24.04-small"
Original file line number Diff line number Diff line change 1+ # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
12---
23name : " Lint"
34on : # yamllint disable-line rule:truthy
@@ -12,6 +13,9 @@ on: # yamllint disable-line rule:truthy
1213 - " checks_requested"
1314permissions :
1415 contents : " read"
16+ concurrency :
17+ group : " spicedb-lint-${{ github.event.pull_request.number }}"
18+ cancel-in-progress : true
1519jobs :
1620 go-license-check :
1721 name : " License Check"
Original file line number Diff line number Diff line change 1+ # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
12---
23name : " Devel (nightly) Release"
34on : # yamllint disable-line rule:truthy
Original file line number Diff line number Diff line change 1+ # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
12---
23name : " Release for Windows"
34on : # yamllint disable-line rule:truthy
You can’t perform that action at this time.
0 commit comments