Skip to content

Commit 8e69436

Browse files
authored
Merge pull request helm#30912 from Bhargavkonidena/fix_30893
Fix helm#30893 - issue templates
2 parents ba0fbde + a5084dc commit 8e69436

4 files changed

Lines changed: 117 additions & 9 deletions

File tree

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
name: Bug Report
2+
description: Report a bug encountered in Helm
3+
labels: kind/bug
4+
body:
5+
- type: textarea
6+
id: problem
7+
attributes:
8+
label: What happened?
9+
description: |
10+
Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner.
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: expected
16+
attributes:
17+
label: What did you expect to happen?
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: repro
23+
attributes:
24+
label: How can we reproduce it (as minimally and precisely as possible)?
25+
description: |
26+
Please list steps someone can follow to trigger the issue.
27+
28+
For example:
29+
1. Run `helm install mychart ./path-to-chart -f values.yaml --debug`
30+
2. Observe the following error: ...
31+
32+
You can include:
33+
- a sample `values.yaml` block
34+
- a link to a chart
35+
- specific `helm` commands used
36+
37+
This helps others reproduce and debug your issue more effectively.
38+
validations:
39+
required: true
40+
41+
- type: textarea
42+
id: helmVersion
43+
attributes:
44+
label: Helm version
45+
value: |
46+
<details>
47+
```console
48+
$ helm version
49+
# paste output here
50+
```
51+
</details>
52+
validations:
53+
required: true
54+
55+
- type: textarea
56+
id: kubeVersion
57+
attributes:
58+
label: Kubernetes version
59+
value: |
60+
<details>
61+
62+
```console
63+
$ kubectl version
64+
# paste output here
65+
```
66+
67+
</details>
68+
validations:
69+
required: true
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Documentation
2+
description: Report any mistakes or missing information from the documentation or the examples
3+
labels: kind/documentation
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
⚠️ **Note**: Most documentation lives in [helm/helm-www](https://github.com/helm/helm-www).
9+
If your issue is about Helm website documentation or examples, please [open an issue there](https://github.com/helm/helm-www/issues/new/choose).
10+
11+
- type: textarea
12+
id: feature
13+
attributes:
14+
label: What would you like to be added?
15+
description: |
16+
Link to the issue (please include a link to the specific documentation or example).
17+
Link to the issue raised in [Helm Documentation Improvement Proposal](https://github.com/helm/helm-www)
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: rationale
23+
attributes:
24+
label: Why is this needed?
25+
validations:
26+
required: true
27+
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Enhancement/feature
2+
description: Provide supporting details for a feature in development
3+
labels: kind/feature
4+
body:
5+
- type: textarea
6+
id: feature
7+
attributes:
8+
label: What would you like to be added?
9+
description: |
10+
Feature requests are unlikely to make progress as issues.
11+
Initial discussion and ideas can happen on an issue.
12+
But significant changes or features must be proposed as a [Helm Improvement Proposal](https://github.com/helm/community/blob/main/hips/hip-0001.md) (HIP)
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: rationale
18+
attributes:
19+
label: Why is this needed?
20+
validations:
21+
required: true

.github/issue_template.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)