Skip to content

Commit 272e63b

Browse files
ABUCKY0meisZWFLZ
andauthored
[FEATURE] 👔 Add Issue Forms (#7)
* style(issue templates): 👔 Add Issue Templates * ✏️ fix some typos * ✏️ Fix typo * Remove agreements * remove agreements x2 --------- Co-authored-by: Andrew Curtis <[email protected]>
1 parent 136dcbd commit 272e63b

File tree

2 files changed

+93
-0
lines changed

2 files changed

+93
-0
lines changed

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Feature Request
2+
description: Request a New Feature
3+
title: '[FEATURE]: '
4+
labels:
5+
- enhancement
6+
body:
7+
- type: textarea
8+
attributes:
9+
label: Description
10+
description: A clear and concise description of the problem or missing capability
11+
validations:
12+
required: true
13+
- type: textarea
14+
attributes:
15+
label: Describe the solution you'd like
16+
description: If you have a solution in mind, please describe it.
17+
- type: textarea
18+
attributes:
19+
label: Describe alternatives you've considered
20+
description: Have you considered any alternative solutions or workarounds?
21+
- type: textarea
22+
attributes:
23+
label: What's the Motivation for this request?
24+
description: How would this benefit users/maintainers?

.github/ISSUE_TEMPLATE/issue.yml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
name: Bug Report
2+
description: Bug Report Template
3+
title: '[BUG] '
4+
labels:
5+
- bug
6+
- needs confirmation
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: >-
11+
Thanks for filing a Bug Report! Please write a concise title above,
12+
without removing `[BUG]` from the title. Then fill out the form below.
13+
- type: dropdown
14+
id: build-action
15+
attributes:
16+
label: >-
17+
Have you tested on at least two seperate PROS Projects, and are you
18+
certain this is an issue with the Build Action, and not any
19+
configuration issues on your end?
20+
description: Please select one of the following answers below.
21+
options:
22+
- 'Yes'
23+
- 'No'
24+
- I don't have another repository to test.
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: expected-behavior
29+
attributes:
30+
label: Expected Behavior
31+
description: >-
32+
Please input what you expected to happen, as concisely as possible. Try
33+
to say more than "It doesn't crash", or "it builds successfully".
34+
placeholder: >-
35+
Please input what you expected to happen, as concisely as possible. Try
36+
to say more than "It doesn't crash", or "it builds successfully".
37+
validations:
38+
required: true
39+
- type: textarea
40+
id: actual-behavior
41+
attributes:
42+
label: Actual Behavior
43+
description: >-
44+
Please input what actually happened, as concisely as possible. Try
45+
to say more than "It crashed", or "it failed to build".
46+
placeholder: >-
47+
Please input what actually happened, as concisely as possible. Try
48+
to say more than "It crashed", or "it failed to build".
49+
validations:
50+
required: true
51+
- type: input
52+
id: logs-link
53+
attributes:
54+
label: Link to the Log
55+
description: >-
56+
If your log files are Publicly Available, please provide a link to them
57+
below.
58+
placeholder: https://github.com/YourName/YourRepository/actions/runs/random-id
59+
- type: textarea
60+
id: log-output
61+
attributes:
62+
label: Log Output (Only If your Logs are Private)
63+
description: >-
64+
If your logs aren't publicly available, provide as much context around
65+
the error as possible.
66+
- type: textarea
67+
id: additional-information
68+
attributes:
69+
label: If you have any additional information, please provide it below.

0 commit comments

Comments
 (0)