File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 6
6
- ' **'
7
7
workflow_call :
8
8
9
+ concurrency :
10
+ group : ${{ github.workflow }}${{ github.ref_name != github.event.repository.default_branch && github.ref || github.run_id }}
11
+ cancel-in-progress : ${{ github.ref_name != github.event.repository.default_branch }}
12
+
9
13
jobs :
10
14
check :
11
15
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 5
5
tags :
6
6
- ' v*'
7
7
8
+
9
+ concurrency :
10
+ group : ${{ github.workflow }}${{ github.ref_name != github.event.repository.default_branch && github.ref || github.run_id }}
11
+ cancel-in-progress : ${{ github.ref_name != github.event.repository.default_branch }}
8
12
jobs :
9
13
check :
10
14
uses : ./.github/workflows/check.yml
Original file line number Diff line number Diff line change @@ -2,9 +2,13 @@ name: Repository Maintenance
2
2
3
3
on :
4
4
push :
5
- branches : [ 'main' ]
5
+ branches : ['main']
6
6
workflow_dispatch :
7
7
8
+ concurrency :
9
+ group : ${{ github.workflow }}${{ github.ref_name != github.event.repository.default_branch && github.ref || github.run_id }}
10
+ cancel-in-progress : ${{ github.ref_name != github.event.repository.default_branch }}
11
+
8
12
jobs :
9
13
dependency-submission :
10
14
name : Dependency Submission
You can’t perform that action at this time.
0 commit comments