-
Notifications
You must be signed in to change notification settings - Fork 390
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create bug_report.yml * Create feature_request.yml
- Loading branch information
1 parent
4af0d52
commit 59656ad
Showing
2 changed files
with
65 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,48 @@ | ||
--- | ||
body: | ||
- | ||
attributes: | ||
value: | | ||
Please check the issues tab to avoid duplicates. | ||
Thanks for taking the time to fill out this bug report! | ||
type: markdown | ||
- | ||
attributes: | ||
label: "Describe the issue:" | ||
id: what-happened | ||
type: textarea | ||
validations: | ||
required: true | ||
- | ||
attributes: | ||
description: "It can be a github repo, etherscan link, or code snippet." | ||
label: "Code example to reproduce the issue:" | ||
placeholder: "`contract A {}`\n" | ||
id: reproduce | ||
type: textarea | ||
validations: | ||
required: true | ||
- | ||
attributes: | ||
description: | | ||
What version of echidna and slither are you running? | ||
Run `echidna --version` and `slither --version` | ||
label: "Version:" | ||
id: version | ||
type: textarea | ||
validations: | ||
required: true | ||
- | ||
attributes: | ||
description: | | ||
Please copy and paste any relevant log output. This | ||
will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
label: "Relevant log output:" | ||
id: logs | ||
type: textarea | ||
description: "File a bug report" | ||
labels: | ||
- bug-candidate | ||
name: "Bug Report" | ||
title: "[Bug-Candidate]: " |
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,17 @@ | ||
--- | ||
name: Feature request | ||
description: Suggest a feature | ||
labels: ["enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please check the issues tab to avoid duplicates. | ||
Thanks for providing feedback on Echidna! | ||
- type: textarea | ||
attributes: | ||
label: Describe the desired feature | ||
description: Explain what the feature solves/ improves. | ||
validations: | ||
required: true |