-
Notifications
You must be signed in to change notification settings - Fork 441
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #652 from Vinitvh/develop
- Loading branch information
Showing
3 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
labels: ['bug'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: What happened? | ||
description: Please describe the bug. | ||
placeholder: Description of the bug. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: What are the steps to reproduce? | ||
description: Please describe the steps to reproduce the bug. | ||
placeholder: | | ||
Step 1: ... | ||
Step 2: ... | ||
Step 3: ... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: What is the expected behavior? | ||
description: Please describe the behavior you expect. | ||
placeholder: I expect that... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: error-thrown | ||
attributes: | ||
label: What is the error thrown? | ||
description: Please provide the exact error thrown. | ||
placeholder: "Web3Error.invalidData("Exact error message")" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: source-path | ||
attributes: | ||
label: What's the stack trace said? | ||
description: Please provide the exact source path. | ||
placeholder: "Sources/Core/Transaction/CodableTransaction.swift:129 func recoverPublicKey()" | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Documentation Request | ||
description: Suggest documentation you would like added | ||
labels: ['documentation'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this documentation request! | ||
- type: textarea | ||
id: area | ||
attributes: | ||
label: What area of the framework would you like to have improved the documentation for? | ||
description: Please be very specific and link to the relevant page in the documentation if possible. | ||
placeholder: I would like the documentation for... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reason | ||
attributes: | ||
label: Why is the current documentation for this area not sufficient? | ||
description: A clear and concise description of why this documentation needs to be improved. | ||
placeholder: The documentation needs to be improved because... | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Feature Request | ||
description: Suggest an idea for this project | ||
labels: ['feature'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this feature request! | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Is your feature request related to a problem? | ||
description: A clear and concise description of what the problem is. | ||
placeholder: Yes, the problem is that... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: What solution would you like? | ||
description: A clear and concise description of what you want to happen. | ||
placeholder: I would like that... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: What alternatives have you considered? | ||
description: A clear and concise description of any alternative solutions or features you've considered. | ||
placeholder: I have considered to... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Any additional context? | ||
description: Add any other context or screenshots about the feature request here. |