Adjust to new issue template format (#7609)

* Adjust to new issue template

* add markdownlint rule exclusions
This commit is contained in:
Satadru Pramanik
2022-11-08 19:31:12 -05:00
committed by GitHub
parent f8647f6fd8
commit 592f7af80c
5 changed files with 52 additions and 63 deletions

5
.github/ISSUE_TEMPLATE/.mdl_style.rb vendored Normal file
View File

@@ -0,0 +1,5 @@
all
exclude_rule 'MD035'
exclude_rule 'MD036'
exclude_rule 'MD041'
exclude_rule 'MD046'

1
.github/ISSUE_TEMPLATE/.mdlrc vendored Normal file
View File

@@ -0,0 +1 @@
style '.mdl_style.rb'

View File

@@ -1,63 +0,0 @@
name: 🐞 Bug
description: File a bug/issue
title: "[BUG] <title>"
labels: [Bug, Needs Triage]
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: Description
description: A concise description of what you're experiencing.
validations:
required: false
- type: textarea
attributes:
label: Expected Behavior
description: A concise description of what you expected to happen.
validations:
required: false
- type: textarea
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. I executed this command:
```shell
# your command here
```
Output:
```
# output of your command
```
render: markdown
validations:
required: false
- type: textarea
attributes:
label: Environment
description: |
Paste the output of `crew sysinfo -v` between two `***` below
value: |
***
***
render: markdown
validations:
required: false
- type: textarea
attributes:
label: Anything else?
description: |
Links? References? Anything that will give us more context about the issue you are encountering!
What I think needs to be done:
- [ ] step one
- [ ] step two
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
render: markdown
validations:
required: false

45
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@@ -0,0 +1,45 @@
---
name: Bug report
about: Create a report to help us improve
title: "\U0001F41E Bug"
labels: ''
assignees: ''
---
<!-- markdownlint-disable MD040 MD046 -->
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. I executed this command:
```shell
# your command here
```
Output:
```
# output of your command
```
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Environment: Paste the output of `crew sysinfo -v` between the two `***` below**
***
***
**Additional context**
Add any other context about the problem here.
What I think needs to be done:
- [ ] step one
- [ ] step two

1
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@@ -0,0 +1 @@
blank_issues_enabled: false