-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add more github actions thanks to {ghactions4r}
- Loading branch information
1 parent
bb74e3b
commit 23ceaa8
Showing
5 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
*.html | ||
*.rds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# use usethis::use_tidy_description() to style DESCRIPTION file and open any | ||
# changes as a pull request to the branch that started the workflow | ||
name: call-style-description | ||
# on specifies the build triggers. See more info at | ||
# https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows | ||
on: | ||
# workflow_dispatch allows for pushing a button to run the workflow manually | ||
# push runs the workflow on branches listed in square brackets | ||
# uncomment the following line to add manual capabilities | ||
#workflow_dispatch: | ||
push: | ||
branches: [main, master] | ||
paths: | ||
- 'DESCRIPTION' | ||
jobs: | ||
call-workflow: | ||
uses: nmfs-fish-tools/ghactions4r/.github/workflows/style-description.yml@main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# use styler::style_active_package() to style code and open any changes as a pull request to the branch that started the workflow | ||
name: call-style | ||
# on specifies the build triggers. See more info at https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows | ||
on: | ||
# workflow_dispatch requires pushing a button to run the workflow manually. uncomment the following line to add: | ||
#workflow_dispatch: | ||
# Runs the workflow on each push to the main or master branch: | ||
push: | ||
branches: [main, master] | ||
jobs: | ||
call-workflow: | ||
uses: nmfs-fish-tools/ghactions4r/.github/workflows/style-r-code.yml@main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# run devtools::document and open any changes as a pull request to the branch that started the workflow | ||
name: call-update-docs | ||
on: | ||
# workflow_dispatch requires pushing a button to run the workflow manually. uncomment the following line to add: | ||
#workflow_dispatch: | ||
# Runs the workflow on each push to the main or master branch: | ||
push: | ||
branches: [main, master] | ||
jobs: | ||
call-workflow: | ||
uses: nmfs-fish-tools/ghactions4r/.github/workflows/update-roxygen-docs.yml@main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters