-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: upgrades to issue templates (#217)
Co-authored-by: Khuda Dad Nomani <32505158+KhudaDad414@users.noreply.github.com>%0ACo-authored-by: Alejandra Quetzalli <alejandra.quetzalli@postman.com>%0ACo-authored-by: Lukasz Gornicki <lpgornicki@gmail.com>
- Loading branch information
1 parent
c5239ca
commit a10768b
Showing
4 changed files
with
153 additions
and
36 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,83 @@ | ||
name: 🐛 Bug Report | ||
description: Report bugs to fix and improve. | ||
title: "[BUG] <description>" | ||
labels: ["bug"] | ||
|
||
|
||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug. | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
|
||
|
||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots | ||
description: Please add screenshots/video of the bug you faced. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproduce | ||
attributes: | ||
label: How to Reproduce | ||
description: Attach all steps/share a github gist that can help anyone reproduce the bug. | ||
value: | | ||
1. I first did this | ||
2. I then did this | ||
3. And so on . . . | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: browser | ||
attributes: | ||
label: "🥦 Browser" | ||
description: "What browser are you using?" | ||
options: | ||
- Google Chrome | ||
- Brave | ||
- Microsoft Edge | ||
- Mozilla Firefox | ||
- Safari | ||
- Opera | ||
- Other | ||
validations: | ||
required: optional | ||
|
||
- type: checkboxes | ||
id: no-duplicate-issues | ||
attributes: | ||
label: "👀 Have you checked for similar open issues?" | ||
options: | ||
- label: "I checked and didn't find similar issue" | ||
required: true | ||
|
||
- type: checkboxes | ||
id: read-code-of-conduct | ||
attributes: | ||
label: "🏢 Have you read the Contributing Guidelines?" | ||
options: | ||
- label: "I have read the [Contributing Guidelines](https://github.com/asyncapi/.github/blob/master/CONTRIBUTING.md)" | ||
required: true | ||
|
||
- type: dropdown | ||
attributes: | ||
label: Are you willing to work on this issue ? | ||
description: This is absolutely not required, but we are happy to guide you in the contribution process. | ||
options: | ||
- "Yes I am willing to submit a PR!" | ||
- "No, someone else can work on it" |
This file was deleted.
Oops, something went wrong.
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,70 @@ | ||
name: 💡 Feature Request | ||
description: Suggest a new idea/feature | ||
title: "[FEATURE] <description>" | ||
labels: ["enhancement"] | ||
|
||
body: | ||
- type: textarea | ||
id: need_improvement | ||
attributes: | ||
label: Why do we need this improvement? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: change | ||
attributes: | ||
label: How will this change help? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots | ||
description: Please add screenshots if applicable | ||
validations: | ||
required: false | ||
|
||
|
||
- type: textarea | ||
id: implemented | ||
attributes: | ||
label: How could it be implemented/designed? | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: breakingchange | ||
attributes: | ||
label: "🚧 Breaking changes" | ||
description: "Will this be a breaking change?" | ||
options: | ||
- "Yes" | ||
- "No" | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
id: no-duplicate-issues | ||
attributes: | ||
label: "👀 Have you checked for similar open issues?" | ||
options: | ||
- label: "I checked and didn't find a similar issue" | ||
required: true | ||
|
||
- type: checkboxes | ||
id: read-code-of-conduct | ||
attributes: | ||
label: "🏢 Have you read the Contributing Guidelines?" | ||
options: | ||
- label: "I have read the [Contributing Guidelines](https://github.com/asyncapi/.github/blob/master/CONTRIBUTING.md)" | ||
required: true | ||
|
||
- type: dropdown | ||
attributes: | ||
label: Are you willing to work on this issue? | ||
description: This is absolutely not required, but we are happy to guide you in the contribution process. | ||
options: | ||
- "Yes I am willing to submit a PR!" | ||
- "No, someone else can work on it." |