Skip to content

Commit

Permalink
Merge pull request #209 from frictionlessdata/citation_cff
Browse files Browse the repository at this point in the history
Remove checklist tooling, use CITATION.cff
  • Loading branch information
peterdesmet committed Jun 7, 2024
2 parents b8712f8 + 16a2790 commit d7a02da
Show file tree
Hide file tree
Showing 12 changed files with 422 additions and 179 deletions.
23 changes: 6 additions & 17 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,12 @@
^.*\.Rproj$
^CITATION\.cff$
^CRAN-SUBMISSION$
^LICENSE.md$
^LICENSE\.md$
^README\.Rmd$
^\.Rproj\.user$
^\.github$
^\.httr-oauth$
^\.zenodo\.json$
^_pkgdown.yml$
^\.Rproj\.user$
^_pkgdown\.yml$
^cache$
^checklist.yml$
^codecov\.yml$
^frictionless\.Rproj$
^CITATION\.cff$
^codemeta\.json$
^cran-comments\.md$
^data-raw$
^docs$
^frictionless\.Rproj$
^man-roxygen$
^LICENSE\.md$
^pkgdown$
^revdep$
^README\.Rmd$
^CRAN-SUBMISSION$
58 changes: 58 additions & 0 deletions .github/workflows/update-citation-cff.yaml
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@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
# 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-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"
58 changes: 0 additions & 58 deletions .zenodo.json

This file was deleted.

Loading

0 comments on commit d7a02da

Please sign in to comment.