-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(repo): added issue templates (#78)
- Loading branch information
1 parent
b117fb9
commit d0c1c1c
Showing
3 changed files
with
101 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,49 @@ | ||
name: 🐞 Bug Report | ||
description: File a bug report. | ||
labels: ['bug', 'triage'] | ||
assignees: | ||
- CorentinTh | ||
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 | ||
description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks! | ||
placeholder: Bug description | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us, what did you expect to happen? If you have a screenshot, you can paste it here. | ||
placeholder: Tell us what you see! | ||
value: 'A bug happened!' | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: version | ||
attributes: | ||
label: System information | ||
description: What is you environment? You can use the `npx envinfo --system --browsers` command to get this information. | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: app-type | ||
attributes: | ||
label: Where did you encounter the bug? | ||
options: | ||
- Public app (enclosed.cc) | ||
- Documentation website (docs.enclosed.cc) | ||
- A self hosted instance | ||
- Other (installations, docker, etc.) | ||
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 @@ | ||
blank_issues_enabled: 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,51 @@ | ||
name: 🚀 New feature proposal | ||
description: Propose a new feature/enhancement | ||
labels: ['enhancement', 'triage'] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for your interest in the project and taking the time to fill out this feature report! | ||
- type: dropdown | ||
id: request-type | ||
attributes: | ||
label: What type of request is this? | ||
options: | ||
- New feature idea | ||
- Enhancement of an existing feature | ||
- Deployment or CI/CD improvement | ||
- Hosting or Self-hosting improvement | ||
- Related to documentation | ||
- Other | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: Clear and concise description of the feature you are proposing | ||
description: A clear and concise description of what the feature is. | ||
placeholder: 'Example: I would like to see...' | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: Any other context or screenshots about the feature request here. | ||
|
||
- type: checkboxes | ||
id: checkboxes | ||
attributes: | ||
label: Validations | ||
description: Before submitting the issue, please make sure you do the following | ||
options: | ||
- label: Check the feature is not already implemented in the project. | ||
required: true | ||
- label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate. | ||
required: true | ||
- label: Check that the feature is technically feasible and aligns with the project's goals. | ||
required: true |