Skip to content

Commit 132b079

Browse files
authored
Add issue forms (#704)
1 parent 6926d20 commit 132b079

File tree

3 files changed

+80
-0
lines changed

3 files changed

+80
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Bug report
2+
description: Report a problem with qsim or this project
3+
type: Bug
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thank you for taking the time to fill out this bug report!
9+
10+
- type: textarea
11+
attributes:
12+
label: Describe the issue
13+
description: >-
14+
Please explain clearly and in detail what the issue is. What led up
15+
to it, or how did you encounter it?
16+
validations:
17+
required: true
18+
19+
- type: input
20+
attributes:
21+
label: What version of qsim are you using?
22+
validations:
23+
required: false
24+
25+
- type: textarea
26+
attributes:
27+
label: How can the issue be reproduced?
28+
description: >-
29+
Explain in a step-by-step fashion what someone else would need to
30+
do in order to reproduce the issue. If possible, include literal
31+
examples of commands or code using [Markdown fenced code
32+
blocks](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks).
33+
For long output, paste the text into [collapsed
34+
sections](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/organizing-information-with-collapsed-sections)
35+
or attach text files.
36+
validations:
37+
required: false
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Feature request
2+
description: Request a new feature or change in qsim
3+
type: Enhancement
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thank you for taking the time to fill out this feature request form!
9+
10+
- type: textarea
11+
attributes:
12+
label: Is your feature request related to a use case or problem?
13+
description: >-
14+
Please tell us the context of your request. Is it to help you do
15+
something that you currently cannot due to limitations in qsim, or is it
16+
an idea for an enhancement or new functionality, or something else?
17+
validations:
18+
required: true
19+
20+
- type: textarea
21+
attributes:
22+
label: What solution or approach do you envision?
23+
description: >-
24+
If you have ideas or preferences for the solution, you can let us know
25+
here. If you are aware of other similar or related work, please let us
26+
know about it here.
27+
validations:
28+
required: true
29+
30+
- type: dropdown
31+
attributes:
32+
label: How urgent is this for you?
33+
description: >-
34+
Please choose from among the following options. If the lack of this
35+
feature is blocking important work, please choose from among P0–P2.
36+
options:
37+
- P0 – needed no later than a week
38+
- P1 – needed by the next release
39+
- P2 – needed within two quarters
40+
- P3 – not blocked; it's an idea
41+
validations:
42+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true

0 commit comments

Comments
 (0)