-
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 #109 from opentofu/105_additional_templates
Fix #105: Add templates for bugs/enhancements in the registry
- Loading branch information
Showing
3 changed files
with
44 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,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 |
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 @@ | ||
blank_issues_enabled: 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,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 |