Skip to content

Commit

Permalink
Replace ISSUE_TEMPLATE with Bug-Report form (#36)
Browse files Browse the repository at this point in the history
## Description

Replace ISSUE_TEMPLATE.md with Bug-Report.yml form based template.

## Why is this needed

PR #34 added a form based issue template which causes extra friction to use the old template. By adding this in we should now have 2 options. I think this form is also nicer to use than the markdown template version.
  • Loading branch information
mmlb committed Nov 30, 2021
2 parents 5a6bf86 + 8a5e221 commit bd0f00d
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 35 deletions.
58 changes: 58 additions & 0 deletions .github/ISSUE_TEMPLATE/Bug-Report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: ["bug", "triage"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: what-happened
attributes:
label: What happened?
placeholder: Tell us what you see!
validations:
required: true
- type: textarea
id: what-was-expected
attributes:
label: What did you expect to happen?
placeholder: Tell us what you wanted!
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: How can we reproduce this?
description: Please provide as much detail as possible so that we may try to reproduce and debug.
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
- type: textarea
id: os
attributes:
label: Operating System and Version
description: Tell us about your development environment
placeholder: "Example: Ubuntu 20.04"
validations:
required: true
- type: textarea
id: os
attributes:
label: Execution Environment
description: How are you running tinkerbell?
placeholder: "Example: Vagrant libvirt sandbox"
valiations:
required: true
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/tinkerbell/.github/blob/main/CODE_OF_CONDUCT.md)
options:
- label: I agree to follow this project's Code of Conduct
required: true
35 changes: 0 additions & 35 deletions ISSUE_TEMPLATE.md

This file was deleted.

0 comments on commit bd0f00d

Please sign in to comment.