forked from ArslanYM/StarterHive
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and rename bug_report.md to bug_report.yml
- Loading branch information
Showing
2 changed files
with
37 additions
and
28 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,37 @@ | ||
|
||
name: Bug report | ||
description: Create a bug report to help us address errors in the repository | ||
title: "[BUG] <bug description>" | ||
labels: [bug] | ||
body: | ||
- type: textarea | ||
id: bugdescription | ||
attributes: | ||
label: Description of the bug | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Please add screenshots (if applicable) | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Add any other context about the problem here | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Checklist | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/ArslanYM/StarterHive/blob/main/CODE_OF_CONDUCT.md) | ||
options: | ||
- label: "I have read the [Contributing Guidelines](https://github.com/ArslanYM/StarterHive/blob/main/CONTRIBUTING.md)" | ||
required: true | ||
- label: "I have checked the existing [issues](https://github.com/ArslanYM/StarterHive/issues)" | ||
required: true | ||
- label: "I am willing to work on this issue (optional)" | ||
required: false | ||
|