forked from gretzke/foundry-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
67 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,31 @@ | ||
name: Bug report | ||
description: File a bug report to help us improve the code | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please check that the bug is not already being tracked. | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: Provide a clear and concise description of what the bug is and which contracts it affects. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: Provide a clear and concise description of the desired fix. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: To Reproduce | ||
description: If you have written tests to showcase the bug, what can we run to reproduce the issue? | ||
placeholder: "git checkout <branchname> / forge test --isolate --mt <testName>" | ||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: If there is any additional context needed like a dependency or integrating contract that is affected please describe it below. |
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,36 @@ | ||
name: Feature Improvement | ||
description: Suggest an improvement. | ||
labels: ["triage"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please ensure that the feature has not already been requested. | ||
- type: dropdown | ||
attributes: | ||
label: Component | ||
description: Which area of code does your idea improve? | ||
multiple: true | ||
options: | ||
- Gas Optimization | ||
- General design optimization (improving efficiency, cleanliness, or developer experience) | ||
- Documentation | ||
- type: textarea | ||
attributes: | ||
label: Describe the suggested feature and problem it solves. | ||
description: Provide a clear and concise description of what feature you would like to see, and what problems it solves. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the desired implementation. | ||
description: If possible, provide a suggested architecture change or implementation. | ||
- type: textarea | ||
attributes: | ||
label: Describe alternatives. | ||
description: If possible, describe the alternatives you've considered, or describe the current functionality and how it may be sub-optimal. | ||
- type: textarea | ||
attributes: | ||
label: Additional context. | ||
description: Please list any additional dependencies or integrating contacts that are affected. |