-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
72 additions
and
14 deletions.
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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples | ||
# The action runs when: | ||
# - A new release is published | ||
# - The DESCRIPTION or inst/CITATION are modified | ||
# - Can be run manually | ||
# For customizing the triggers, visit https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows | ||
on: | ||
release: | ||
types: [published] | ||
push: | ||
branches: [master, main] | ||
paths: | ||
- DESCRIPTION | ||
- inst/CITATION | ||
workflow_dispatch: | ||
|
||
name: Update CITATION.cff | ||
|
||
jobs: | ||
update-citation-cff: | ||
runs-on: macos-latest | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: r-lib/actions/setup-r@v2 | ||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: | | ||
any::cffr | ||
any::V8 | ||
- name: Update CITATION.cff | ||
run: | | ||
library(cffr) | ||
# Customize with your own code | ||
# See https://docs.ropensci.org/cffr/articles/cffr.html | ||
# Write your own keys | ||
mykeys <- list() | ||
# Create your CITATION.cff file | ||
cff_write(keys = mykeys) | ||
shell: Rscript {0} | ||
|
||
- name: Commit results | ||
run: | | ||
git config --local user.name "$GITHUB_ACTOR" | ||
git config --local user.email "[email protected]" | ||
git add CITATION.cff | ||
git commit -m 'Update CITATION.cff' || echo "No changes to commit" | ||
git push origin || echo "No changes to commit" | ||
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,5 +1,5 @@ | ||
# ----------------------------------------------------------- | ||
# CITATION file created with {cffr} R package, v0.2.2 | ||
# CITATION file created with {cffr} R package, v0.2.3 | ||
# See also: https://docs.ropensci.org/cffr/ | ||
# ----------------------------------------------------------- | ||
|
||
|
@@ -35,7 +35,7 @@ preferred-citation: | |
- family-names: Brown | ||
given-names: Andrew | ||
email: [email protected] | ||
notes: R package version 2.7.2 | ||
notes: R package version 2.7.3 | ||
url: https://CRAN.R-project.org/package=soilDB | ||
year: '2022' | ||
repository: https://CRAN.R-project.org/package=soilDB | ||
|
@@ -171,6 +171,17 @@ references: | |
orcid: https://orcid.org/0000-0002-1416-3412 | ||
year: '2022' | ||
url: https://CRAN.R-project.org/package=DBI | ||
- type: software | ||
title: curl | ||
abstract: 'curl: A Modern and Flexible Web Client for R' | ||
notes: Imports | ||
authors: | ||
- family-names: Ooms | ||
given-names: Jeroen | ||
email: [email protected] | ||
orcid: https://orcid.org/0000-0002-4035-0289 | ||
year: '2022' | ||
url: https://CRAN.R-project.org/package=curl | ||
- type: software | ||
title: jsonlite | ||
abstract: 'jsonlite: A Simple and Robust JSON Parser and Generator for R' | ||
|
@@ -216,17 +227,6 @@ references: | |
email: [email protected] | ||
year: '2022' | ||
url: https://CRAN.R-project.org/package=rvest | ||
- type: software | ||
title: curl | ||
abstract: 'curl: A Modern and Flexible Web Client for R' | ||
notes: Suggests | ||
authors: | ||
- family-names: Ooms | ||
given-names: Jeroen | ||
email: [email protected] | ||
orcid: https://orcid.org/0000-0002-4035-0289 | ||
year: '2022' | ||
url: https://CRAN.R-project.org/package=curl | ||
- type: software | ||
title: sf | ||
abstract: 'sf: Simple Features for R' | ||
|
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