Skip to content

Commit 6510855

Browse files
authored
chore: switch to issue forms (#221)
Fixes #213
1 parent 9e2b0d1 commit 6510855

4 files changed

Lines changed: 95 additions & 75 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 51 deletions
This file was deleted.
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: Bug report
2+
description: Create a bug report to help us improve
3+
labels: ['type: bug']
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to submit a bug report. Please provide a general summary of the issue in the Title above.
10+
- type: textarea
11+
attributes:
12+
label: Description
13+
description: Provide a more detailed introduction to the issue itself, and why you consider it to be a bug.
14+
validations:
15+
required: true
16+
- type: textarea
17+
attributes:
18+
label: Expected Behavior
19+
description: Tell us what should happen.
20+
validations:
21+
required: false
22+
- type: textarea
23+
attributes:
24+
label: Actual Behavior
25+
description: Tell us what happens instead.
26+
validations:
27+
required: false
28+
- type: textarea
29+
attributes:
30+
label: Possible Fix
31+
description: Not obligatory, but suggest a fix or reason for the bug.
32+
validations:
33+
required: false
34+
35+
- type: textarea
36+
attributes:
37+
label: Steps to reproduce
38+
description: >
39+
Provide a link to a live example, or an unambiguous set of steps to reproduce this bug.
40+
Include code to reproduce, if relevant.
41+
placeholder: |
42+
1.
43+
2.
44+
3.
45+
validations:
46+
required: false
47+
- type: textarea
48+
attributes:
49+
label: Additional Context
50+
description: How has this bug affected you? What were you trying to accomplish?
51+
validations:
52+
required: false
53+
- type: textarea
54+
attributes:
55+
label: Your Environment
56+
description: Please tell us about your environment. Provide the output of the following commands.
57+
value: |
58+
- Python version used (`python --version`):
59+
- python-re3data version used (`python -m pip show python-re3data | grep "^Version:"`):
60+
- Operating system and version:
61+
validations:
62+
required: false
63+
64+
# This issue template is adapted from:
65+
# "open-source-templates", https://github.com/TalAter/open-source-templates (MIT License).

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 24 deletions
This file was deleted.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Feature request
2+
description: Suggest an idea for this project
3+
labels: ['type: feature']
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to submit a feature request. Please provide a general summary of the issue in the Title above.
10+
- type: textarea
11+
attributes:
12+
label: Detailed Description
13+
description: Provide a detailed description of the change or addition you are proposing.
14+
validations:
15+
required: true
16+
- type: textarea
17+
attributes:
18+
label: Context
19+
description: Why is this change important to you? How would you use it? How can it benefit other users?
20+
validations:
21+
required: false
22+
- type: textarea
23+
attributes:
24+
label: Possible Implementation
25+
description: Not obligatory, but suggest an idea for implementing addition or change.
26+
validations:
27+
required: false
28+
29+
# This issue template is adapted from:
30+
# "open-source-templates", https://github.com/TalAter/open-source-templates (MIT License).

0 commit comments

Comments
 (0)