Skip to content

Commit

Permalink
Fix #105: Add templates for bugs/enhancements in the registry
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Mesh <[email protected]>
  • Loading branch information
cam72cam committed Dec 15, 2023
1 parent dbd33df commit d08294f
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Bug Report
description: Having trouble with fetching a provider or module from OpenTofu?
labels: ["bug"]
body:
- type: textarea
attributes:
label: Thank you for reporting an issue.
description: Please provide a quick description of the problem you are encountering.
validations:
required: true

- type: textarea
id: tofu-version
attributes:
label: OpenTofu Version
description: Run `tofu version` to show the version, and paste the result below. If you are not running the latest version of OpenTofu, please try upgrading because your issue may have already been fixed.
render: shell
placeholder: ...output of `tofu version`...
validations:
required: true

- type: textarea
id: opentofu-config
attributes:
label: OpenTofu Configuration Files
description:
placeholder:
value: |
```hcl
// Snippet of HCL that can be used to help reproduce this problem
```
validations:
required: true
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: true
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Feature Request
description: Want to suggest something that's not yet supported?
labels: ["enhancement"]
body:
- type: textarea
attributes:
label: Description of the feature you are looking for.
description: Please provide a clear description of the feature you are looking for. Please check existing issues to make sure this has not already been suggested.
validations:
required: true

0 comments on commit d08294f

Please sign in to comment.