-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add Github issue form templates
- Loading branch information
1 parent
c312a5a
commit d414f92
Showing
4 changed files
with
120 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,40 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "bug: " | ||
labels: ["bug"] | ||
body: | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us, what did you expect to happen? | ||
placeholder: Tell us what you see! | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps-reproduce | ||
attributes: | ||
label: Steps to reproduce | ||
description: Please provide the steps that lead to the buggy behaviour. | ||
placeholder: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: What browsers are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- Firefox | ||
- Chrome | ||
- Safari | ||
- Microsoft Edge | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: Please provide additional context e.g. logs |
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,13 @@ | ||
name: Documentation | ||
description: Propose change to the documentation | ||
title: "docs: " | ||
labels: ["documentation"] | ||
body: | ||
- type: textarea | ||
id: proposed-change | ||
attributes: | ||
label: Proposed change | ||
description: Describe the proposed change or addition to the documentation | ||
placeholder: e.g. "Write concise contribution guidelines" | ||
validations: | ||
required: true |
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,37 @@ | ||
name: Feature request | ||
description: File a new feature request | ||
title: "feat: " | ||
labels: ["enhancement"] | ||
body: | ||
- type: textarea | ||
id: reason | ||
attributes: | ||
label: Reason for feature | ||
description: Describe the reason or motivation behind the feature request | ||
placeholder: e.g. "I cannot accomplish ... because ..." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Proposed solution | ||
description: Describe your proposed solution / idea of the feature. | ||
placeholder: e.g. "Add a new button that ..." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Alternatives / Available workarounds | ||
description: A clear and concise description of any alternative solutions or workarounds you've considered. | ||
placeholder: e.g. "I can currently work around this by ..." or "No alternatives found." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here. | ||
placeholder: Anything else that is important to know? | ||
validations: | ||
required: false |
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,30 @@ | ||
name: Question | ||
description: Ask a question about this project | ||
title: "question: " | ||
labels: ["question"] | ||
body: | ||
- type: textarea | ||
id: question | ||
attributes: | ||
label: Your question | ||
description: Ask your question here. | ||
placeholder: e.g. "How can I accomplish ...?" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: scope | ||
attributes: | ||
multiple: true | ||
label: Scope | ||
options: | ||
- Aim of the project | ||
- Documentation | ||
- Project setup | ||
- Codebase | ||
description: Specify the feature or part of the project your question is about | ||
- type: input | ||
id: scope-not-listed | ||
attributes: | ||
label: Additional scope | ||
description: If the scope is not listed, please specify it here | ||
required: false |