Skip to content

Commit 989d07d

Browse files
authored
Merge pull request #809 from terraform-providers/aareet_update_issue_templates
Update issue templates
2 parents 6904a92 + c98ff58 commit 989d07d

File tree

5 files changed

+123
-43
lines changed

5 files changed

+123
-43
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 43 deletions
This file was deleted.
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
---
2+
name: "\U0001F41B Bug Report"
3+
about: "If something isn't working as expected \U0001F914."
4+
title: ''
5+
labels: bug
6+
7+
---
8+
9+
<!---
10+
Please note the following potential times when an issue might be in Terraform core:
11+
12+
* [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues
13+
* [State](https://www.terraform.io/docs/state/index.html) and [State Backend](https://www.terraform.io/docs/backends/index.html) issues
14+
* [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues
15+
* [Registry](https://registry.terraform.io/) issues
16+
* Spans resources across multiple providers
17+
18+
If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead.
19+
--->
20+
21+
Hi there,
22+
23+
Thank you for opening an issue. Please note that we try to keep the Terraform issue tracker reserved for bug reports and feature requests. For general usage questions, please see: https://www.terraform.io/community.html.
24+
25+
26+
### Community Note
27+
<!--- Please keep this note for the community --->
28+
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
29+
* Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
30+
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
31+
32+
### Terraform Version and Provider Version
33+
<!--- Run `terraform -v` to show the version. If you are not running the latest version of Terraform, please upgrade because your issue may have already been fixed. --->
34+
35+
### Affected Resource(s)
36+
<!-- Please list the resources as a list, for example:
37+
- opc_instance
38+
- opc_storage_volume
39+
40+
If this issue appears to affect multiple resources, it may be an issue with Terraform's core, so please mention this. -->
41+
42+
### Terraform Configuration Files
43+
```hcl
44+
# Copy-paste your Terraform configurations here - for large Terraform configs,
45+
# please use a service like Dropbox and share a link to the ZIP file. For
46+
# security, you can also encrypt the files using our GPG public key.
47+
```
48+
49+
### Debug Output
50+
<!--Please provider a link to a GitHub Gist containing the complete debug output: https://www.terraform.io/docs/internals/debugging.html. Please do NOT paste the debug output in the issue; just paste a link to the Gist.-->
51+
52+
### Panic Output
53+
<!--If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the `crash.log`.-->
54+
55+
### Expected Behavior
56+
What should have happened?
57+
58+
### Actual Behavior
59+
What actually happened?
60+
61+
### Steps to Reproduce
62+
<!-- Please list the steps required to reproduce the issue, for example:
63+
1. `terraform apply` -->
64+
65+
### Important Factoids
66+
<!-- Are there anything atypical about your accounts that we should know? For example: Running in EC2 Classic? Custom version of OpenStack? Tight ACLs?-->
67+
68+
### References
69+
<!--Are there any other GitHub issues (open or closed) or Pull Requests that should be linked here? For example:-->
70+
- GH-1234

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
name: "\U0001F680 Feature Request"
3+
about: "I have a suggestion (and might want to implement myself \U0001F642)!"
4+
title: ''
5+
labels: enhancement
6+
7+
---
8+
9+
<!--- Please keep this note for the community --->
10+
11+
### Community Note
12+
13+
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
14+
* Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
15+
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
16+
17+
<!--- Thank you for keeping this note for the community --->
18+
19+
### Description
20+
21+
<!--- Please leave a helpful description of the feature request here. --->
22+
23+
### Potential Terraform Configuration
24+
25+
<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
26+
27+
```hcl
28+
# Copy-paste your Terraform configurations here - for large Terraform configs,
29+
# please use a service like Dropbox and share a link to the ZIP file. For
30+
# security, you can also encrypt the files using our GPG public key.
31+
```
32+
33+
### References
34+
35+
<!---
36+
Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
37+
38+
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor blog posts or documentation?
39+
--->

.github/pull_request_template.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
### Description
2+
3+
<!--- Please leave a helpful description of the pull request here. --->
4+
5+
### Acceptance tests
6+
- [ ] Have you added an acceptance test for the functionality being added?
7+
- [ ] Have you run the acceptance tests on this branch? (If so, please include the test log in a gist)
8+
9+
### References
10+
11+
<!---
12+
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor blog posts or documentation?
13+
--->

0 commit comments

Comments
 (0)