Skip to content

Commit 8e3251b

Browse files
committed
Update workflow configurations to restrict branch triggers to 'main'
1 parent 0e62611 commit 8e3251b

6 files changed

Lines changed: 13 additions & 9 deletions

File tree

.github/workflows/R-CMD-check.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
33
on:
44
push:
5-
branches: [main, master]
5+
branches: [main]
66
pull_request:
77

88
name: R-CMD-check.yaml
@@ -34,6 +34,8 @@ jobs:
3434

3535
- uses: r-lib/actions/setup-pandoc@v2
3636

37+
- uses: quarto-dev/quarto-actions/setup@v2
38+
3739
- uses: r-lib/actions/setup-r@v2
3840
with:
3941
r-version: ${{ matrix.config.r }}

.github/workflows/check-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
33
on:
44
push:
5-
branches: [main, master]
5+
branches: [main]
66
pull_request:
7-
branches: [main, master]
7+
branches: [main]
88

99
name: R-CMD-check-release
1010

.github/workflows/check-standard.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
33
on:
44
push:
5-
branches: [main, master]
5+
branches: [main]
66
pull_request:
7-
branches: [main, master]
7+
branches: [main]
88

99
name: R-CMD-check-standard
1010

.github/workflows/lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
33
on:
44
push:
5-
branches: [main, master]
5+
branches: [main]
66
pull_request:
7-
branches: [main, master]
7+
branches: [main]
88

99
name: lint
1010

.github/workflows/pkgdown.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
33
on:
44
push:
5-
branches: [main, master]
5+
branches: [main]
66
pull_request:
77
release:
88
types: [published]
@@ -27,6 +27,8 @@ jobs:
2727

2828
- uses: r-lib/actions/setup-pandoc@v2
2929

30+
- uses: quarto-dev/quarto-actions/setup@v2
31+
3032
- uses: r-lib/actions/setup-r@v2
3133
with:
3234
use-public-rspm: true

.github/workflows/test-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
33
on:
44
push:
5-
branches: [main, master]
5+
branches: [main]
66
pull_request:
77

88
name: test-coverage.yaml

0 commit comments

Comments
 (0)