Skip to content

Commit 3760673

Browse files
move concurrency down
1 parent 78ab750 commit 3760673

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

.github/workflows/check-full.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ on:
77
pull_request:
88
branches: [main, master]
99

10-
concurrency:
11-
group: ${{ github.workflow }}-${{ github.head_ref }}
12-
cancel-in-progress: true
1310

1411
name: R-CMD-check
1512

@@ -58,3 +55,7 @@ jobs:
5855
needs: check
5956

6057
- uses: r-lib/actions/check-r-package@v2
58+
59+
concurrency:
60+
group: ${{ github.workflow }}-${{ github.head_ref }}
61+
cancel-in-progress: true

.github/workflows/pkgdown.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ on:
44

55
name: pkgdown
66

7-
concurrency:
8-
group: ${{ github.workflow }}-${{ github.head_ref }}
9-
cancel-in-progress: true
10-
11-
127
jobs:
138
pkgdown:
149
runs-on: macOS-latest
@@ -49,3 +44,7 @@ jobs:
4944
git config --local user.email "[email protected]"
5045
git config --local user.name "GitHub Actions"
5146
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)'
47+
48+
concurrency:
49+
group: ${{ github.workflow }}-${{ github.head_ref }}
50+
cancel-in-progress: true

.github/workflows/test-coverage.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ on:
88

99
name: test-coverage
1010

11-
concurrency:
12-
group: ${{ github.workflow }}-${{ github.head_ref }}
13-
cancel-in-progress: true
14-
15-
1611
jobs:
1712
test-coverage:
1813
runs-on: macOS-latest
@@ -49,3 +44,7 @@ jobs:
4944
- name: Test coverage
5045
run: covr::codecov()
5146
shell: Rscript {0}
47+
48+
concurrency:
49+
group: ${{ github.workflow }}-${{ github.head_ref }}
50+
cancel-in-progress: true

0 commit comments

Comments
 (0)