File tree Expand file tree Collapse file tree 5 files changed +30
-0
lines changed Expand file tree Collapse file tree 5 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,12 @@ on: # yamllint disable-line rule:truthy
16
16
env :
17
17
IMAGE_NAME : opendatacube/explorer
18
18
19
+ # When a PR is updated, cancel the jobs from the previous version. Merges
20
+ # do not define head_ref, so use run_id to never cancel those jobs.
21
+ concurrency :
22
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
23
+ cancel-in-progress : true
24
+
19
25
jobs :
20
26
deployment-image-test :
21
27
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 9
9
permissions :
10
10
pull-requests : write
11
11
12
+ # When a PR is updated, cancel the jobs from the previous version. Merges
13
+ # do not define head_ref, so use run_id to never cancel those jobs.
14
+ concurrency :
15
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
16
+ cancel-in-progress : true
17
+
12
18
jobs :
13
19
documentation-preview :
14
20
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 17
17
env :
18
18
IMAGE_NAME : opendatacube/explorer
19
19
20
+ # When a PR is updated, cancel the jobs from the previous version. Merges
21
+ # do not define head_ref, so use run_id to never cancel those jobs.
22
+ concurrency :
23
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
24
+ cancel-in-progress : true
25
+
20
26
jobs :
21
27
docker :
22
28
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 7
7
env :
8
8
IMAGE_NAME : opendatacube/explorer
9
9
10
+ # When a PR is updated, cancel the jobs from the previous version. Merges
11
+ # do not define head_ref, so use run_id to never cancel those jobs.
12
+ concurrency :
13
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
14
+ cancel-in-progress : true
15
+
10
16
jobs :
11
17
cve-scanner :
12
18
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 16
16
env :
17
17
IMAGE_NAME : opendatacube/explorer
18
18
19
+ # When a PR is updated, cancel the jobs from the previous version. Merges
20
+ # do not define head_ref, so use run_id to never cancel those jobs.
21
+ concurrency :
22
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
23
+ cancel-in-progress : true
24
+
19
25
jobs :
20
26
integration-tests :
21
27
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments