-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* form-ified bug report issue template * PR template refresh * add general issue * some more forms * feature request * does this work? * sync from preview * remove old templates * remove one more bit from PR template * add to release notes * switch out that line, too, for a link to the contrib guide * update links in contrib, this will fail until merged * Update .github/PULL_REQUEST_TEMPLATE.md Co-authored-by: Katelyn FitzGerald <7872563+kafitzgerald@users.noreply.github.com> * add @kafitzgerald comments * oops forgot that one * remove functionality module line --------- Co-authored-by: Katelyn FitzGerald <7872563+kafitzgerald@users.noreply.github.com>
- Loading branch information
1 parent
2a90fad
commit 865e2f9
Showing
10 changed files
with
202 additions
and
97 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,89 @@ | ||
name: 🐛 Bug report | ||
description: File a bug report | ||
title: "[🐛]: " | ||
labels: ["bug", "support", "triage"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: input | ||
id: version | ||
attributes: | ||
label: "Version" | ||
description: "What version of geocat-comp are you running?" | ||
placeholder: "v2024.01.0" | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: installation | ||
attributes: | ||
label: "How did you install geocat-comp?" | ||
multiple: false | ||
options: | ||
- conda-forge | ||
- pip | ||
- source | ||
- pre-made maintained environment | ||
- other (please explain in your summary below) | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: os | ||
attributes: | ||
label: "Operating System" | ||
description: "What operating system are you using?" | ||
placeholder: "Example: macOS Big Sur" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: "Summary" | ||
description: "Please provide a summary of the issue" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: "Expected behavior" | ||
description: "What did you expect to happen?" | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: reproduce | ||
attributes: | ||
label: "Steps to reproduce" | ||
description: "If possible, please provide a minimal reproducible example that demonstrates the problem." | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: log-output | ||
attributes: | ||
label: "Relevant log output" | ||
description: "If applicable, please copy and paste any relevant output. This will be automatically formatted into code, so no need for markdown backticks" | ||
render: Python | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: "Environment" | ||
description: "If possible, please paste the output of `conda list` or `pip freeze` between the <details> tags, leaving an empty line following the opening tag." | ||
value: | | ||
<details> | ||
</details> | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
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,36 @@ | ||
name: 💡 Feature request | ||
description: Suggest an idea for this project | ||
title: "[💡]: " | ||
labels: ["feature", "support", "triage"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Thanks for taking the time to fill out this feature request!" | ||
|
||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: "Describe the functionality you are requesting, linking any relevant usage or previous implementations in the python ecosystem or otherwise." | ||
description: "the more information the better!" | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: ncl | ||
attributes: | ||
label: "Is this a request for functionality that was previously in NCL?" | ||
options: | ||
- "Yes" | ||
- "No" | ||
- "Unknown" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: "Additional context" | ||
description: "Add any other context or screenshots about the feature request here" | ||
validations: | ||
required: false |
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,16 @@ | ||
name: 📝 Issue | ||
description: General issue that's not a bug report | ||
title: "[Issue]: " | ||
labels: ["triage"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Thank you for taking the time to fill out this issue!" | ||
|
||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: "Please describe your issue here" | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.
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,45 @@ | ||
name: ✅ Release request | ||
description: Request a new release of geocat-comp | ||
title: "[Release]: vYYYY.MM.##" | ||
labels: ["release", "high-priority"] | ||
assignees: "anissa111" | ||
|
||
body: | ||
- type: input | ||
id: version | ||
attributes: | ||
label: "Version" | ||
placeholder: "vYYYY.MM.##" | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: date | ||
attributes: | ||
label: "Intended release date" | ||
description: "When is this release supposed to be published?" | ||
placeholder: "January 1, 1970" | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: "Summary" | ||
description: "Plain text summary of significant changes" | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
id: checklist | ||
attributes: | ||
label: "Release progress checklist" | ||
description: "After submitting this issue, please check off each item as it is completed." | ||
options: | ||
- label: release-notes.rst has been updated with latest release notes, version, and release date | ||
- label: CI tests are passing | ||
- label: a new tag and release has been made on GitHub | ||
- label: feedstock PR has been merged | ||
- label: new version can be installed via conda | ||
- label: release on pypi action has been triggered on the tag | ||
- label: new version can be installed via pip |
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