Skip to content

Commit

Permalink
use main (not master) in all GHA workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
achubaty committed Jun 6, 2024
1 parent 240158f commit 32fe053
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
on:
push:
branches:
- master
- main
- development
pull_request:
branches:
- master
- main
- development

name: R-CMD-check
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
branches: main
pull_request:
branches: [main, master]
branches: main
release:
types: [published]
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/revdeps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
pull_request:
branches: [main, master, development]
branches: [main, development]
schedule:
- cron: '23 23 * * 0 '

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
on:
push:
branches:
- master
- main
- development
pull_request:
branches:
- master
- main
- development

name: test-coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-citation-cff.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
release:
types: [published]
push:
branches: [master, main]
branches: main
paths:
- DESCRIPTION
- inst/CITATION
Expand Down

0 comments on commit 32fe053

Please sign in to comment.