Skip to content

Commit 6eebef7

Browse files
Merge pull request #652 from Vinitvh/develop
2 parents 26c4e74 + a2837d2 commit 6eebef7

File tree

3 files changed

+112
-0
lines changed

3 files changed

+112
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: Bug Report
2+
description: File a bug report.
3+
labels: ['bug']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report!
9+
- type: textarea
10+
id: bug-description
11+
attributes:
12+
label: What happened?
13+
description: Please describe the bug.
14+
placeholder: Description of the bug.
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: steps-to-reproduce
19+
attributes:
20+
label: What are the steps to reproduce?
21+
description: Please describe the steps to reproduce the bug.
22+
placeholder: |
23+
Step 1: ...
24+
Step 2: ...
25+
Step 3: ...
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: expected-behavior
30+
attributes:
31+
label: What is the expected behavior?
32+
description: Please describe the behavior you expect.
33+
placeholder: I expect that...
34+
validations:
35+
required: true
36+
- type: textarea
37+
id: error-thrown
38+
attributes:
39+
label: What is the error thrown?
40+
description: Please provide the exact error thrown.
41+
placeholder: "Web3Error.invalidData("Exact error message")"
42+
validations:
43+
required: true
44+
- type: textarea
45+
id: source-path
46+
attributes:
47+
label: What's the stack trace said?
48+
description: Please provide the exact source path.
49+
placeholder: "Sources/Core/Transaction/CodableTransaction.swift:129 func recoverPublicKey()"
50+
validations:
51+
required: true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Documentation Request
2+
description: Suggest documentation you would like added
3+
labels: ['documentation']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this documentation request!
9+
- type: textarea
10+
id: area
11+
attributes:
12+
label: What area of the framework would you like to have improved the documentation for?
13+
description: Please be very specific and link to the relevant page in the documentation if possible.
14+
placeholder: I would like the documentation for...
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: reason
19+
attributes:
20+
label: Why is the current documentation for this area not sufficient?
21+
description: A clear and concise description of why this documentation needs to be improved.
22+
placeholder: The documentation needs to be improved because...
23+
validations:
24+
required: true
+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
labels: ['feature']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this feature request!
9+
- type: textarea
10+
id: problem
11+
attributes:
12+
label: Is your feature request related to a problem?
13+
description: A clear and concise description of what the problem is.
14+
placeholder: Yes, the problem is that...
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: solution
19+
attributes:
20+
label: What solution would you like?
21+
description: A clear and concise description of what you want to happen.
22+
placeholder: I would like that...
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: alternatives
27+
attributes:
28+
label: What alternatives have you considered?
29+
description: A clear and concise description of any alternative solutions or features you've considered.
30+
placeholder: I have considered to...
31+
validations:
32+
required: true
33+
- type: textarea
34+
id: context
35+
attributes:
36+
label: Any additional context?
37+
description: Add any other context or screenshots about the feature request here.

0 commit comments

Comments
 (0)