Skip to content

Commit 9c83583

Browse files
authored
chore: add issue templates (#259)
1 parent 14dd94f commit 9c83583

File tree

3 files changed

+131
-0
lines changed

3 files changed

+131
-0
lines changed
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
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+
Hi there,
11+
12+
Thank you for opening an issue. Please provide as much detail as possible when reporting issue as this benefits all parties and will most likely lead to a quicker resolution of the issue.
13+
--->
14+
15+
16+
### Terraform Version, ArgoCD Provider Version and ArgoCD Version
17+
<!--- 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. --->
18+
```
19+
Terraform version:
20+
ArgoCD provider version:
21+
ArgoCD version:
22+
```
23+
24+
### Affected Resource(s)
25+
<!-- Please list the resources as a list, for example:
26+
- argocd_application
27+
- argocd_cluster
28+
If this issue appears to affect multiple resources, it may be an issue with Terraform's core, so please mention this. -->
29+
30+
### Terraform Configuration Files
31+
```hcl
32+
# Copy-paste your Terraform configurations here - for large Terraform configs,
33+
# please use a service like Dropbox and share a link to the ZIP file. For
34+
# security, you can also encrypt the files using our GPG public key.
35+
```
36+
37+
### Debug Output
38+
<!--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. -->
39+
40+
### Panic Output
41+
<!--If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the `crash.log` -->
42+
43+
### Steps to Reproduce
44+
<!-- Please list the steps required to reproduce the issue, for example:
45+
1. `terraform apply` -->
46+
47+
### Expected Behavior
48+
<!-- What should have happened? -->
49+
50+
### Actual Behavior
51+
<!-- What actually happened? -->
52+
53+
### Important Factoids
54+
<!-- Are there anything atypical about your accounts that we should know? For example: For general provider/connectivity issues, how is your ArgoCD server exposed? When dealing with cluster resources, what type of cluster are you referencing (where is it hosted)? -->
55+
56+
### References
57+
<!--Are there any other GitHub issues (open or closed) or Pull Requests that should be linked here? For example:
58+
- GH-1234
59+
-->
60+
61+
### Community Note
62+
<!--- Please keep this note for the community --->
63+
* 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
64+
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+
10+
### Description
11+
12+
<!-- Please leave a helpful description of the feature request here. -->
13+
14+
### Potential Terraform Configuration
15+
<!-- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code -->
16+
17+
```hcl
18+
# Copy-paste your Terraform configurations here - for large Terraform configs,
19+
# please use a service like Dropbox and share a link to the ZIP file. For
20+
# security, you can also encrypt the files using our GPG public key.
21+
```
22+
23+
### References
24+
<!-- Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
25+
26+
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor blog posts or documentation?
27+
-->
28+
29+
<!-- Please keep this note for the community -->
30+
31+
### Community Note
32+
33+
* 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
34+
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
35+
36+
<!-- Thank you for keeping this note for the community -->

.github/ISSUE_TEMPLATE/question.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: "\U0001F914 Question"
3+
about: "If you need help figuring something out"
4+
title: ''
5+
labels: question
6+
7+
---
8+
9+
<!---
10+
Hi,
11+
12+
Please provide as much information as possible when asking your question.
13+
14+
Please understand that we make a best effort attempt to address questions, but our focus is on provider development. It's still valuable to ask your question because you may receive help from the community, and help us understand common asks.
15+
-->
16+
17+
### Terraform Version, ArgoCD Provider Version and ArgoCD Version
18+
<!--- 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. --->
19+
```
20+
Terraform version:
21+
ArgoCD provider version:
22+
ArgoCD version:
23+
```
24+
25+
## Terraform configuration
26+
```hcl
27+
# Enter your configuration here.
28+
```
29+
30+
## Question
31+
<!-- Enter your question here. -->

0 commit comments

Comments
 (0)