-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(issue-template): rewrite to templates to yml renderer (#456)
- Loading branch information
1 parent
08b8294
commit a9523e7
Showing
6 changed files
with
131 additions
and
69 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,62 @@ | ||
name: Bug Report | ||
description: Create a report to help us improve | ||
title: "[Bug]: " | ||
labels: ["bug", "triage"] | ||
assignees: | ||
- arthurvd | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Describe the bug | ||
placeholder: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction-steps | ||
attributes: | ||
label: Reproduction steps | ||
placeholder: | | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '...' | ||
3. Scroll down to '...' | ||
4. See error | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Reproduction steps | ||
placeholder: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots | ||
placeholder: If applicable, add screenshots to help explain your problem. | ||
Tip: You can attach images by clicking this area to highlight it and then dragging files in. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: version-info | ||
attributes: | ||
label: Version info (please complete the following information) | ||
value: | | ||
- OS: [e.g. Windows] | ||
- Version [e.g. 0.1.5] | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
placeholder: Add any other context or screenshots about the bug report here. | ||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. | ||
validations: | ||
required: false |
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,40 @@ | ||
name: Feature Request | ||
description: Suggest an idea for this project | ||
title: "[Feat]: " | ||
labels: ["enhancement", "triage"] | ||
assignees: | ||
- arthurvd | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this feature request! | ||
- type: textarea | ||
id: existing-problem | ||
attributes: | ||
label: Is your feature request related to a problem? Please describe | ||
placeholder: A clear and concise description of what the problem or missing functionality is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: ideal-solution | ||
attributes: | ||
label: Describe the solution you'd like to see | ||
placeholder: A clear and concise description of what you want to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternative-solutions | ||
attributes: | ||
label: Describe the alternatives you've considered | ||
placeholder: A clear and concise description of any alternative solutions or features you've considered (if applicable). | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
placeholder: Add any other context or screenshots about the feature request here. | ||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. | ||
validations: | ||
required: false |
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,29 @@ | ||
name: Task | ||
description: Describe a piece of work (typically non-coding) that should be done. | ||
title: "[Task]: " | ||
labels: ["chore", "triage"] | ||
assignees: | ||
- arthurvd | ||
body: | ||
- type: textarea | ||
id: what-is-the-need | ||
attributes: | ||
label: What is the need for this task? | ||
placeholder: Why should this work be done | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: what-is-the-task | ||
attributes: | ||
label: What is the task? | ||
placeholder: A clear and concise description of what you want to be done. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
placeholder: Add any other context or screenshots about the task here. | ||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. | ||
validations: | ||
required: false |