Skip to content

Commit abdcf87

Browse files
improving form clarity (#1062) (#1067)
Co-authored-by: João Guilherme Hagemann <[email protected]>
1 parent 65a34fd commit abdcf87

File tree

2 files changed

+160
-0
lines changed

2 files changed

+160
-0
lines changed
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
name: Bug Report
2+
description: Create a bug report
3+
labels: ["type: bug"]
4+
body:
5+
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for contributing with Quarkus OpenAPI Generator with this bug report! Submit your issue below:
10+
11+
- type: markdown
12+
attributes:
13+
value: |
14+
## Bug Report
15+
16+
- type: dropdown
17+
id: extension
18+
attributes:
19+
label: "Tell us the extension you're using"
20+
multiple: false
21+
options:
22+
- Client
23+
- Server
24+
- Mock
25+
validations:
26+
required: true
27+
28+
- type: textarea
29+
id: i-tried-this
30+
attributes:
31+
label: "I tried this:"
32+
placeholder: "What did you try to do? A code snippet or example helps."
33+
validations:
34+
required: true
35+
36+
- type: textarea
37+
id: instead-what-happened
38+
attributes:
39+
label: "This happened:"
40+
placeholder: "What happened instead of what you've expected?"
41+
validations:
42+
required: true
43+
44+
- type: textarea
45+
id: what-did-you-expect
46+
attributes:
47+
label: "I expected this:"
48+
placeholder: "What did you expect to happen? Describe the output or behavior you expected to see (unless it's obvious)."
49+
50+
- type: textarea
51+
id: workaround
52+
attributes:
53+
label: "Is there a workaround?"
54+
placeholder: "What's the workaround to avoid this issue?"
55+
56+
- type: textarea
57+
id: reproduce
58+
attributes:
59+
label: "How can we try to reproduce the issue?"
60+
placeholder: "What steps or configuration do we need to reproduce the erratic behavior?"
61+
62+
- type: textarea
63+
attributes:
64+
label: Anything else?
65+
placeholder: |
66+
Links? References? Logs? Anything that will give us more context about the issue you are encountering.
67+
Tip: You can attach images or log files by dragging files in.
68+
69+
- type: markdown
70+
attributes:
71+
value: |
72+
## Environment
73+
74+
- type: input
75+
attributes:
76+
label: Output of `uname -a` or `ver`
77+
- type: input
78+
attributes:
79+
label: Output of `java -version`
80+
- type: input
81+
attributes:
82+
label: Quarkus OpenApi version or git rev
83+
- type: input
84+
attributes:
85+
label: Build tool (ie. output of `mvnw --version` or `gradlew --version`)
86+
- type: textarea
87+
attributes:
88+
label: Additional information
89+
description: >
90+
If you have any additional information for us, please feel free to use the field below.
91+
You can attach screenshots or screen recordings here, by
92+
dragging and dropping files in the field below.
93+
94+
- type: textarea
95+
attributes:
96+
label: Community Notes
97+
value: |
98+
<!-- Please keep this note for the community -->
99+
* Please vote by adding a 👍 reaction to the issue to help us prioritize.
100+
* If you are interested to work on this issue, please leave a comment.name: Bug Report 🐞
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Feature Request
2+
description: Request a new feature
3+
labels: ["type: feature"]
4+
body:
5+
6+
- type: markdown
7+
attributes:
8+
value: |
9+
:pray: Thanks for taking the time to fill out this feature request!
10+
11+
- type: markdown
12+
attributes:
13+
value: |
14+
## Feature Request
15+
16+
- type: dropdown
17+
id: extension
18+
attributes:
19+
label: "Tell us the extension to which you'd like to add the feature."
20+
multiple: false
21+
options:
22+
- Client
23+
- Server
24+
- Mock
25+
validations:
26+
required: true
27+
28+
- type: textarea
29+
id: what-would-you-like-to-add
30+
attributes:
31+
label: "What kind of feature would you like to add?"
32+
placeholder: "Description of the feature you'd like to see."
33+
validations:
34+
required: true
35+
36+
- type: textarea
37+
id: proposals
38+
attributes:
39+
label: "Proposal(s):"
40+
placeholder: "Describe your proposal(s) and any relevant details here."
41+
42+
- type: textarea
43+
id: alternatives
44+
attributes:
45+
label: "Alternative(s):"
46+
placeholder: "Describe any alternative approaches, options, or suggestions you’d like to consider."
47+
48+
- type: textarea
49+
id: additional-info
50+
attributes:
51+
label: "Additional info:"
52+
placeholder: "Provide any supplementary details, context, or supporting information here."
53+
54+
- type: textarea
55+
attributes:
56+
label: Community Notes
57+
value: |
58+
<!-- Please keep this note for the community -->
59+
* Please vote by adding a 👍 reaction to the feature to help us prioritize.
60+
* If you want to work on this feature, please leave a comment.

0 commit comments

Comments
 (0)