-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add dependabot & issue template (#20)
Signed-off-by: david <[email protected]>
- Loading branch information
Showing
3 changed files
with
86 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,27 @@ | ||
name: Bug Report | ||
description: Let us know about an issue you experienced with this software | ||
# labels: ["some existing label","another one"] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing issue? | ||
description: Please search to see if an issue already exists and leave a comment that you also experienced this issue or add your specifics that are related to an existing issue. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: textarea | ||
id: bug | ||
attributes: | ||
label: Description of bug | ||
# description: What seems to be the problem? | ||
# placeholder: Describe the problem. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps to reproduce | ||
description: Provide the steps that led to the discovery of the issue. | ||
# placeholder: Describe what you were doing so we can reproduce the problem. | ||
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,47 @@ | ||
name: Feature Request | ||
description: Submit your requests and suggestions to improve! | ||
labels: ["enhancement"] | ||
body: | ||
- type: checkboxes | ||
id: existing | ||
attributes: | ||
label: Is there an existing issue? | ||
description: Please search to see if an issue already exists and leave a comment that you also experienced this issue or add your specifics that are related to an existing issue. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: textarea | ||
id: motivation | ||
attributes: | ||
label: Motivation | ||
description: Please give precedence as to what lead you to file this issue. | ||
# placeholder: Describe ... | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: request | ||
attributes: | ||
label: Request | ||
description: Please describe what is needed. | ||
# placeholder: Describe what you would like to see added or changed. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Solution | ||
description: If possible, please describe what a solution could be. | ||
# placeholder: Describe what you would like to see added or changed. | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: help | ||
attributes: | ||
label: Are you willing to help with this request? | ||
multiple: true | ||
options: | ||
- Yes! | ||
- No. | ||
- Maybe (please elaborate above) | ||
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,12 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "cargo" | ||
directory: "/" | ||
labels: ["dependencies"] | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: github-actions | ||
directory: '/' | ||
labels: ["dependencies"] | ||
schedule: | ||
interval: daily |