File tree Expand file tree Collapse file tree 6 files changed +32
-0
lines changed Expand file tree Collapse file tree 6 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1
1
name : cloud_evals
2
2
3
+ # Cancel in-progress runs when a new commit is pushed to the same branch/PR
4
+ concurrency :
5
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
6
+ cancel-in-progress : true
7
+
3
8
on :
4
9
push :
5
10
branches :
Original file line number Diff line number Diff line change 1
1
name : docker
2
2
3
+ # Cancel in-progress runs when a new commit is pushed to the same branch/PR
4
+ concurrency :
5
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
6
+ cancel-in-progress : true
7
+
3
8
on :
4
9
push :
5
10
release :
Original file line number Diff line number Diff line change 1
1
name : lint
2
+
3
+ # Cancel in-progress runs when a new commit is pushed to the same branch/PR
4
+ concurrency :
5
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
6
+ cancel-in-progress : true
7
+
2
8
on :
3
9
push :
4
10
branches :
Original file line number Diff line number Diff line change 1
1
name : package
2
+
3
+ # Cancel in-progress runs when a new commit is pushed to the same branch/PR
4
+ concurrency :
5
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
6
+ cancel-in-progress : true
7
+
2
8
on :
3
9
push :
4
10
branches :
Original file line number Diff line number Diff line change 8
8
9
9
name : publish
10
10
11
+ # Cancel in-progress runs when a new commit is pushed to the same branch/PR
12
+ concurrency :
13
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
14
+ cancel-in-progress : true
15
+
11
16
on :
12
17
release :
13
18
types : [published] # publish full release to PyPI when a release is created on Github
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ permissions:
7
7
statuses : write # Allow writing statuses on PRs
8
8
discussions : write
9
9
10
+ # Cancel in-progress runs when a new commit is pushed to the same branch/PR
11
+ concurrency :
12
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
13
+ cancel-in-progress : true
14
+
10
15
on :
11
16
push :
12
17
branches :
You can’t perform that action at this time.
0 commit comments