Skip to content

Commit 707f687

Browse files
committed
chore: issue templates
1 parent 1a600e4 commit 707f687

File tree

2 files changed

+118
-0
lines changed

2 files changed

+118
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
name: 🐛 Bug Report
2+
description: Create a report to help us improve the codemods
3+
title: "bug: "
4+
5+
body:
6+
- type: checkboxes
7+
id: prerequisites
8+
attributes:
9+
label: Prerequisites
10+
description: Please ensure you have completed all of the following.
11+
options:
12+
- label: I agree to follow the [Code of Conduct](https://ionicframework.com/code-of-conduct).
13+
required: true
14+
- label: I have searched for [existing issues](https://github.com/ionic-team/ionic-angular-standalone-codemods) that already report this problem, without success.
15+
required: true
16+
17+
- type: input
18+
id: affected-versions
19+
attributes:
20+
label: Codemod version
21+
description: Which version(s) of the codemod does this issue impact?
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: current-behavior
27+
attributes:
28+
label: Current Behavior
29+
description: A clear description of what the bug is and how it manifests.
30+
validations:
31+
required: true
32+
33+
- type: textarea
34+
id: expected-behavior
35+
attributes:
36+
label: Expected Behavior
37+
description: A clear description of what you expected to happen.
38+
validations:
39+
required: true
40+
41+
- type: textarea
42+
id: steps-to-reproduce
43+
attributes:
44+
label: Steps to Reproduce
45+
description: Please explain the steps required to duplicate this issue.
46+
placeholder: |
47+
1.
48+
2.
49+
3.
50+
validations:
51+
required: true
52+
53+
- type: input
54+
id: reproduction-url
55+
attributes:
56+
label: Code Reproduction URL
57+
description: If you can provide a sample application to reproduce this issue. This is the best way to ensure this issue is triaged quickly. Issues without a code reproduction may be closed if the Ionic Team cannot reproduce the issue you are reporting.
58+
placeholder: https://github.com/...
59+
60+
- type: textarea
61+
id: additional-information
62+
attributes:
63+
label: Additional Information
64+
description: List any other information that is relevant to your issue. Stack traces, related issues, suggestions on how to fix, Stack Overflow links, forum links, etc.
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: 💡 Feature Request
2+
description: Suggest an idea for the codemods
3+
title: "feat: "
4+
body:
5+
- type: checkboxes
6+
id: prerequisites
7+
attributes:
8+
label: Prerequisites
9+
description: Please ensure you have completed all of the following.
10+
options:
11+
- label: I agree to follow the [Code of Conduct](https://ionicframework.com/code-of-conduct).
12+
required: true
13+
- label: I have searched for [existing issues](https://github.com/ionic-team/ionic-angular-standalone-codemods) that already report this problem, without success.
14+
required: true
15+
16+
- type: textarea
17+
id: description
18+
attributes:
19+
label: Describe the Feature Request
20+
description: A clear and concise description of what the feature does.
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
id: use-case
26+
attributes:
27+
label: Describe the Use Case
28+
description: A clear and concise use case for what problem this feature would solve.
29+
validations:
30+
required: true
31+
32+
- type: textarea
33+
id: proposed-solution
34+
attributes:
35+
label: Describe Preferred Solution
36+
description: A clear and concise description of what you how you want this feature to be added to the codemods.
37+
38+
- type: textarea
39+
id: alternatives-considered
40+
attributes:
41+
label: Describe Alternatives
42+
description: A clear and concise description of any alternative solutions or features you have considered.
43+
44+
- type: textarea
45+
id: related-code
46+
attributes:
47+
label: Related Code
48+
description: If you are able to illustrate the feature request with an example.
49+
50+
- type: textarea
51+
id: additional-information
52+
attributes:
53+
label: Additional Information
54+
description: List any other information that is relevant to your issue. Stack traces, related issues, suggestions on how to implement, Stack Overflow links, forum links, etc.

0 commit comments

Comments
 (0)