Skip to content

Commit ff9086d

Browse files
chore: create request general change form (#435)
* chore: create request general change form * Improve placeholder text Co-authored-by: Mario Beltrán Alarcón <[email protected]> Co-authored-by: Mario Beltrán Alarcón <[email protected]>
1 parent ca73d05 commit ff9086d

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Request a general change
2+
description: Request a general change for the eslint-plugin-testing-library.
3+
labels: [enhancement]
4+
body:
5+
- type: input
6+
id: plugin_version
7+
attributes:
8+
label: Plugin version
9+
description: What version of `eslint-plugin-testing-library` are you using?
10+
placeholder: v4.10.1
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: problem_that_needs_solving
16+
attributes:
17+
label: What problem do you want to solve?
18+
description: Tell us about your problem.
19+
placeholder: New Node version is not supported officially
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
id: proposed_solution
25+
attributes:
26+
label: Your take on the correct solution?
27+
description: Tell us your idea to solve the problem.
28+
placeholder: Update Node versions in `package.json`
29+
validations:
30+
required: true
31+
32+
- type: textarea
33+
id: anything_else
34+
attributes:
35+
label: Anything else?
36+
description: If there's anything else we need to know, tell us about it here.
37+
placeholder: By the way, you also need to know about...
38+
validations:
39+
required: false
40+
41+
- type: dropdown
42+
id: want_to_submit_pr_to_implement_change
43+
attributes:
44+
label: Do you want to submit a pull request to implement this change?
45+
options:
46+
- 'Yes'
47+
- 'Yes, but need help'
48+
- 'No'
49+
validations:
50+
required: true

0 commit comments

Comments
 (0)