-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from dakshsinghrathore/DsrIssue#56
docs: added issue buttons and respective forms
- Loading branch information
Showing
3 changed files
with
79 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,25 @@ | ||
name: "🐞 Bug Report" | ||
description: "Create a report to help us improve" | ||
title: "BUG:" | ||
labels: ["Bug"] | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: "Is there an existing issue for this?" | ||
description: "Please search to see if an issue already exists for the bug you encountered." | ||
options: | ||
- label: "I have searched the existing issues" | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "What happened?" | ||
description: "A concise description of what you're experiencing." | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
attributes: | ||
label: "Record" | ||
options: | ||
- label: "I agree to follow this project's Code of Conduct" | ||
required: true | ||
- label: "I want to work on this issue" |
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,25 @@ | ||
name: "📑 Documentation Update" | ||
description: "Improve Documentation" | ||
title: "DOC:" | ||
labels: [DOC, Needs Triage] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: "What's wrong with the existing documentation" | ||
description: "Which things do we need to add or delete" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Add ScreenShots" | ||
description: "Add sufficient SS to explain your issue." | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
attributes: | ||
label: "Record" | ||
options: | ||
- label: "I agree to follow this project's Code of Conduct" | ||
required: true | ||
- label: "I want to work on this issue" |
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: "✨ Feature Request" | ||
description: "Suggest an idea for this project " | ||
title: "Feat:" | ||
labels: ["enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for suggesting a feature! | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing request? | ||
description: Please search open and closed issues to see if this request has already been made. | ||
options: | ||
- label: I have searched for this request | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the feature request | ||
description: Please provide a concise description of the request, potential solutions, and additional context. | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
attributes: | ||
label: "Record" | ||
options: | ||
- label: "I agree to follow this project's Code of Conduct" | ||
required: true | ||
- label: "I want to work on this issue" |