-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from lshtm-gigs/dev
gigs 0.4.1
- Loading branch information
Showing
35 changed files
with
552 additions
and
345 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,55 @@ | ||
# 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@v3 | ||
- 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 | ||
# Create your CITATION.cff file | ||
cff_write() | ||
shell: Rscript {0} | ||
|
||
- name: Commit results | ||
run: | | ||
git config --local user.name "github-actions[bot]" | ||
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
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 |
---|---|---|
|
@@ -7,8 +7,8 @@ cff-version: 1.2.0 | |
message: 'To cite package "gigs" in publications use:' | ||
type: software | ||
license: GPL-3.0-or-later | ||
title: 'gigs: Assess Fetal, Newborn, and Child Growth' | ||
version: 0.4.0 | ||
title: 'gigs: Assess Fetal, Newborn, and Child Growth with International Standards' | ||
version: 0.4.1 | ||
abstract: Convert between anthropometric measures and z-scores/centiles in multiple | ||
growth standards, and classify fetal, newborn, and child growth accordingly. With | ||
a simple interface to growth standards from the World Health Organisation and International | ||
|
@@ -21,14 +21,14 @@ authors: | |
orcid: https://orcid.org/0009-0003-8214-4496 | ||
preferred-citation: | ||
type: manual | ||
title: 'gigs: Assess Growth in Infants and Newborns' | ||
title: 'gigs: Assess Fetal, Newborn, and Child Growth with International Standards' | ||
authors: | ||
- family-names: Parker | ||
given-names: Simon | ||
email: [email protected] | ||
orcid: https://orcid.org/0009-0003-8214-4496 | ||
year: '2023' | ||
notes: 0.4.0 | ||
notes: 0.4.1 | ||
url: https://github.com/lshtm-gigs/gigs/ | ||
repository-code: https://github.com/lshtm-gigs/gigs | ||
url: https://github.com/lshtm-gigs/gigs/ | ||
|
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,7 +1,7 @@ | ||
Type: Package | ||
Package: gigs | ||
Title: Assess Fetal, Newborn, and Child Growth | ||
Version: 0.4.0 | ||
Title: Assess Fetal, Newborn, and Child Growth with International Standards | ||
Version: 0.4.1 | ||
Authors@R: c( | ||
person(given = "Simon", family = "Parker", | ||
email = "[email protected]", | ||
|
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
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
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
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
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
Oops, something went wrong.