-
-
Notifications
You must be signed in to change notification settings - Fork 40
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 #696 from Adity20/aditya/patch-4
Bug_report and workflow_suggestion templates added
- Loading branch information
Showing
2 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,61 @@ | ||
name: "🐛 Bug Report" | ||
description: "Create a report to help us improve our community workflows" | ||
title: "🐛 Bug: " | ||
labels: ["🐛 Bug", "Status: Triage"] | ||
|
||
body: | ||
- type: textarea | ||
attributes: | ||
label: "Describe the bug" | ||
description: "A clear and concise description of what the bug is" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Steps To Reproduce" | ||
description: "Steps to reproduce the behavior" | ||
placeholder: | | ||
1. Go to'...' | ||
2. Click on'...' | ||
3. Scroll down to'...' | ||
4. See error | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Expected Behavior" | ||
description: "A clear and concise description of what you expected to happen" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Screenshots" | ||
description: | | ||
If applicable, add screenshots to help explain your problem | ||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: "Device Information [optional]" | ||
description: | | ||
examples: | ||
- **OS**: Ubuntu 20.04 | ||
- **Browser**: chrome | ||
- **version**: 22 | ||
value: | | ||
- OS: | ||
- Browser: | ||
- version: | ||
render: markdown | ||
validations: | ||
required: false | ||
- type: dropdown | ||
attributes: | ||
label: "Are you working on this issue?" | ||
options: | ||
- 'Yes' | ||
- 'No' | ||
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,40 @@ | ||
name: "💡 Community Workflow Suggestion" | ||
description: "Suggest a new community workflow" | ||
title: "💡 Community Workflow proposal: " | ||
labels: ["✨ Enhancement", "Status: Triage"] | ||
|
||
body: | ||
- type: textarea | ||
attributes: | ||
label: "Description" | ||
description: "A clear and concise description of the suggested workflow" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Objective" | ||
description: "What is the main goal or purpose of this workflow?" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Steps" | ||
description: "List the steps of the suggested workflow" | ||
placeholder: | | ||
1. Step 1 | ||
2. Step 2 | ||
3. Step 3 | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Expected Outcome" | ||
description: "A clear and concise description of what you expect to achieve with this workflow" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: "Additional Context [optional]" | ||
description: "Add any other context or information about the suggested workflow here" | ||
validations: | ||
required: false |