forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 5
chore(github): issue template configuration and update issue templates #96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 6 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
39efc7f
feat(github): add github issue template configuration
qdm12 a444531
remove question issue template
qdm12 9c50725
remove go-ethereum specific bug issue template
qdm12 288bce9
add libevm specific bug yml issue template
qdm12 7c58a9c
Make feature issue template easier to fill in
qdm12 4cc84c1
Update .github/ISSUE_TEMPLATE/feature.yml
qdm12 e7cf05b
Softening the language 😉
qdm12 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,41 @@ | ||
| name: Bug | ||
| description: Report a bug | ||
| title: "Bug: " | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thanks for taking the time to fill out this bug report! | ||
|
|
||
| ⚠️ Your issue will be instantly closed as not planned WITHOUT explanation if: | ||
| - you do not fill out **the title of the issue** ☝️ | ||
| - you do not provide the **libevm version** as requested below | ||
| - type: input | ||
| id: host-os | ||
| attributes: | ||
| label: Host platform | ||
| description: What is your host platform? | ||
| placeholder: "Debian Buster amd64" | ||
| - type: input | ||
| id: version | ||
| attributes: | ||
| label: What is the version of libevm | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: problem | ||
| attributes: | ||
| label: "What's the problem 🤔" | ||
| placeholder: "That feature does not work..." | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: logs | ||
| attributes: | ||
| label: Share your logs if needed | ||
| render: plain text | ||
| - type: textarea | ||
| id: config | ||
| attributes: | ||
| label: Share your configuration(s) if needed | ||
| render: plain text | ||
This file contains hidden or 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,5 @@ | ||
| blank_issues_enabled: false | ||
| contact_links: | ||
| - name: Need help | ||
| url: https://github.com/ava-labs/libevm/discussions/new/choose | ||
| about: Please create a Github discussion. |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,15 @@ | ||
| name: Feature request | ||
| description: Suggest a feature to add to libevm | ||
| title: "Feature request: " | ||
| body: | ||
| - type: textarea | ||
| id: description | ||
| attributes: | ||
| label: "What's the feature 🧐" | ||
| placeholder: "Describe the feature you want and why it should be added" | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: description | ||
| attributes: | ||
| label: "How would you recommend implementing it?" |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this an automated process?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no 😄 just a warning in place so users don't forget to set the title of the issue and the libevm version. I had personally wayyyy too many issues without a title and/or without a version, which make things pretty horrible to maintain, and that reduced them, but we can remove this for now if you feel it's unecessary. I would recommend not automating in case it's still a serious issue, even without title/version 😮
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm ok with doing that but think we need to soften the language then. Please remove "instantly" and "WITHOUT explanation" as it's a little too aggressive.