-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New issue template forms, with fields and labels
- Loading branch information
1 parent
ddb4467
commit c40b84d
Showing
6 changed files
with
130 additions
and
56 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,61 @@ | ||
name: "Bug report" | ||
description: "Create a bug report to help us improve the S0tool!" | ||
labels: ["bug", "question", "triage:not-checked"] | ||
body: | ||
- type: checkboxes | ||
id: no-duplicate-issues | ||
attributes: | ||
label: "Please verify that this bug has NOT been raised before." | ||
description: "Search in the issues sections by clicking [HERE](https://github.com//huizebruin/s0tool/issues?q=) and read the [Discussions](https://github.com/huizebruin/s0tool/discussions)!" | ||
options: | ||
- label: "I checked and didn't find a similar issue" | ||
required: true | ||
- type: textarea | ||
id: description | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Describe the bug*" | ||
description: "A clear and concise description of what the bug is." | ||
- type: textarea | ||
id: expected-behavior | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Expected behaviour" | ||
description: "A clear and concise description of what you expected to happen." | ||
placeholder: "..." | ||
- type: textarea | ||
id: version-info | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Version Information" | ||
description: "The version info block." | ||
placeholder: "Please post S0tool version / ESPHome version / Home Assistant version " | ||
- type: textarea | ||
id: ESPHome-version-info | ||
validations: | ||
required: true | ||
attributes: | ||
label: "ESPHome version Information" | ||
description: "The version info block." | ||
placeholder: "Please post ESPHome version" | ||
- type: textarea | ||
id: Home Assistant-version-info | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Home Assistant version Information" | ||
description: "The version info block." | ||
placeholder: "Please post Home Assistant version " | ||
|
||
- type: textarea | ||
id: Additional-context | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Additional context" | ||
description: "Add any other context about the problem here." | ||
placeholder: "Add any other context about the problem here. " | ||
|
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: 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,15 @@ | ||
name: "Documentation" | ||
description: "Create an issue to improve the documentation" | ||
labels: ["documentation", "triage:not-checked"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Create a new issue regarding the S0tool documentation | ||
- type: textarea | ||
id: repro | ||
attributes: | ||
label: Body of the issue | ||
description: Please provide one distinct thing to fix or a clearly defined enhancement | ||
validations: | ||
required: true |
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,53 @@ | ||
name: Feature Request | ||
description: Suggest an idea for this project | ||
title: "[FR] title" | ||
labels: ["enhancement", "triage:not-checked"] | ||
body: | ||
- type: checkboxes | ||
id: no-duplicate-issues | ||
attributes: | ||
label: "Please verify that this feature request has NOT been suggested before." | ||
description: "Search in the issues sections by clicking [HERE](https://github.com/huizebruin/s0tool/issues?q=)" | ||
options: | ||
- label: "I checked and didn't find a similar feature request" | ||
required: true | ||
- type: textarea | ||
id: problem | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Problem statement" | ||
description: "A clear and concise description of the problem or missing feature." | ||
placeholder: "I am always struggling with ..." | ||
- type: textarea | ||
id: solution | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Suggested solution" | ||
description: "A clear and concise description of what you want to happen to solve the problem statement." | ||
placeholder: "In my use-case, ..." | ||
- type: textarea | ||
id: alternatives | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Describe alternatives you've considered" | ||
description: "A clear and concise description of any alternative solutions or features you've considered." | ||
placeholder: "This could also be done by doing ..." | ||
- type: textarea | ||
id: examples | ||
validations: | ||
required: false | ||
attributes: | ||
label: "Examples of other systems" | ||
description: "Show how other software handles your FR if you have examples." | ||
placeholder: "I software xxx this is done in the following way..." | ||
- type: checkboxes | ||
id: self-develop | ||
attributes: | ||
label: "Do you want to develop this?" | ||
description: "This is not required, and you do not need to be a pro - this is just as information for us." | ||
options: | ||
- label: "I want to develop this." | ||
required: false |