-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MAINT] add citation.cff file and validation workflow (#55)
* add cff file * add dependabot
- Loading branch information
Showing
3 changed files
with
56 additions
and
0 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,9 @@ | ||
--- | ||
# Documentation | ||
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: monthly |
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,18 @@ | ||
--- | ||
name: validate CITATION.cff | ||
|
||
on: | ||
push: | ||
branches: main | ||
pull_request: | ||
branches: ['*'] | ||
|
||
jobs: | ||
validate_cff: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Check whether the citation metadata from CITATION.cff is valid | ||
uses: citation-file-format/[email protected] | ||
with: | ||
args: --validate |
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,29 @@ | ||
cff-version: 1.2.0 | ||
|
||
title: "giga_connectome" | ||
|
||
version: 0.4.1dev | ||
|
||
abstract: | ||
"generate connectome from fMRIPrep outputs." | ||
|
||
message: "If you use this software, please cite it as below." | ||
|
||
repository-code: "https://github.com/SIMEXP/giga_connectome" | ||
|
||
contact: | ||
- email: [email protected] | ||
family-names: Wang | ||
given-names: Hao-Ting | ||
|
||
authors: | ||
- family-names: Wang | ||
given-names: Hao-Ting | ||
email: [email protected] | ||
- family-names: Dessain | ||
given-names: Quentin | ||
- family-names: Natasha | ||
given-names: Clarke | ||
|
||
|
||
license: MIT |