Skip to content

Commit

Permalink
docs: Adds issue template for bug reports (#140)
Browse files Browse the repository at this point in the history
* docs: Adds issue template for bug reports

* docs: small update based on feedback
  • Loading branch information
pedro-te authored Jul 6, 2023
1 parent d7e7723 commit 1dbd469
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/ISSUE_TEMPLATE/issue-template.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"]
body:
- type: markdown
attributes:
value: |
Thank you for taking the time to fill out this bug report!
- type: textarea
id: versions
attributes:
label: What versions are you using?
description: Please share the provider and terraform versions, and any other version that is relevant to troubleshoot the issue
placeholder: Terraform version 1.5.2, Provider version 2.0.1
validations:
required: true
- type: textarea
id: expected
attributes:
label: What did you expect to happen?
description: Please provide a detailed description of what was expected to happen
placeholder: Plan should have produced X or Y
validations:
required: true
- type: textarea
id: actual
attributes:
label: What actually happened?
description: Please provide a detailed description of what actually happened
placeholder: Provider produced inconsistent final plan
validations:
required: true
- type: textarea
id: code
attributes:
label: Terraform code to reproduce the bug
description: Please provide the minimum required amount of code to reproduce the bug. If the code is not sufficient to reproduce the issue, then we might discard the bug
placeholder: <code>
render: hcl
validations:
required: true
- type: textarea
id: addcommentscode
attributes:
label: Any additional comments or code?
description: Use this space to write down any additional comments or code to reproduce the bug. You may use markdown inside the textbox to format your code
placeholder: Comment or <code>
validations:
required: false
- type: textarea
id: reproduce
attributes:
label: Steps to reproduce the bug
description: Please provide the steps to reproduce the issue
placeholder: Step 1...
validations:
required: true

0 comments on commit 1dbd469

Please sign in to comment.