forked from cjolowicz/cookiecutter-hypermodern-python
-
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 #72 from statisticsnorway/issue-template
Add issue templates for bug report and feature request
- Loading branch information
Showing
5 changed files
with
96 additions
and
9 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
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
73 changes: 73 additions & 0 deletions
73
{{cookiecutter.project_name}}/.github/ISSUE_TEMPLATE/bug_report.yml
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,73 @@ | ||
name: "\U0001F41E Bug Report" | ||
description: Report a bug | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please fill out the sections below to help everyone identify and fix the bug | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
placeholder: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduce | ||
attributes: | ||
label: To Reproduce | ||
description: Steps to reproduce the behavior. | ||
placeholder: | | ||
1. Step 1... | ||
2. Step 2... | ||
3. Step 3... | ||
4. Step 4... | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behaviour | ||
placeholder: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: platform | ||
attributes: | ||
label: Platforms and Environments | ||
multiple: true | ||
description: > | ||
On which platforms does the bug occur? | ||
The first four items are platforms in Statistics Norway. | ||
You can select multiple platforms. | ||
options: | ||
- DaplaLab with vscode | ||
- DaplaLab with Jupyter | ||
- Jupyter on-prem | ||
- Old Dapla with Jupyter | ||
- Windows | ||
- Linux | ||
- macOS | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version of our software are you running? | ||
placeholder: 1.0.0 | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Error messages or logs | ||
description: Please copy and paste any relevant log output or error messages. | ||
render: shell | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for reporting this issue! We will get back to you as soon as possible. |
17 changes: 17 additions & 0 deletions
17
{{cookiecutter.project_name}}/.github/ISSUE_TEMPLATE/feature_request.yml
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,17 @@ | ||
name: "\U0001F381 Feature Request" | ||
description: Suggest a new feature or enhancment. | ||
labels: ["enhancement"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: > | ||
Describe the feature or enhancement and explain why it should be implemented. | ||
Include a code example if applicable. | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for reporting this issue! We will get back to you as soon as possible. |