diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..d57120b4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug report +about: Something not working as described? Missing/incorrect documentation? This is the place. +title: '' +labels: 'bug' +assignees: '' + +--- +## Summary + + +## Additional details + +- CuBIDS version: +- Datalad version: + +### What were you trying to do? + +### What did you expect to happen? + +### What actually happened? + +## Reproducing the bug + + diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..574590db --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,4 @@ +contact_links: + - name: Usage question + url: https://neurostars.org/tags/c/software-support/234/cubids + about: Please ask questions about using CuBIDS on NeuroStars. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..f3d8ef67 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,16 @@ +--- +name: Feature request +about: Got an idea for a new feature, or changing an existing one? This is the place. +title: '' +labels: 'enhancement' +assignees: '' + +--- +## Summary + + +## Additional details + + +## Next steps + diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..2b5fd111 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "github-actions" # See documentation for possible values + directory: "/" # Location of package manifests + labels: ["maintenance", "ignore-for-release"] + assignees: ["tsalo"] + schedule: + interval: "weekly" + - package-ecosystem: pip + directory: "/" + labels: ["maintenance", "ignore-for-release"] + schedule: + interval: weekly diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..b3b3b454 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,9 @@ +Closes . + +## Changes proposed in this pull request + +- + +## Documentation that should be reviewed + +- diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 00000000..0c8fee8e --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,20 @@ +changelog: + exclude: + labels: + - ignore-for-release + categories: + - title: 🛠 Breaking Changes + labels: + - breaking-change + - title: 🎉 Exciting New Features + labels: + - enhancement + - title: 👎 Deprecations + labels: + - deprecation + - title: 🐛 Bug Fixes + labels: + - bug + - title: Other Changes + labels: + - "*"