-
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: introduce new design issue section
Changes: - add initial template for the design issue
- Loading branch information
1 parent
e27f9f1
commit 9b8336b
Showing
1 changed file
with
70 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,70 @@ | ||
name: "insert pallet emoji" Design Proposal | ||
description: Suggest a new design idea | ||
title: "[DESIGN] <description>" | ||
labels: ["design"] | ||
|
||
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." |