Skip to content

Commit 592f2ff

Browse files
committed
Update GitHub template to triage issues
Signed-off-by: Andrey Velichkevich <[email protected]>
1 parent c4c3eb5 commit 592f2ff

File tree

5 files changed

+81
-47
lines changed

5 files changed

+81
-47
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Bug Report
2+
description: Tell us about a problem you are experiencing with Katib
3+
labels: ["kind/bug", "lifecycle/needs-triage"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this Katib bug report!
9+
- type: textarea
10+
id: problem
11+
attributes:
12+
label: What happened?
13+
description: |
14+
Please provide as much info as possible. Not doing so may result in your bug not being
15+
addressed in a timely manner.
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: expected
20+
attributes:
21+
label: What did you expect to happen?
22+
validations:
23+
required: true
24+
- type: textarea
25+
id: environment
26+
attributes:
27+
label: Environment
28+
value: |
29+
Kubernetes version:
30+
```bash
31+
$ kubectl version
32+
33+
```
34+
Katib controller version:
35+
```bash
36+
$ kubectl get pods -n kubeflow -l katib.kubeflow.org/component=controller -o jsonpath="{.items[*].spec.containers[*].image}"
37+
38+
```
39+
Katib Python SDK version:
40+
```bash
41+
$ pip show kubeflow-katib
42+
43+
```
44+
validations:
45+
required: true
46+
- type: input
47+
id: votes
48+
attributes:
49+
label: Impacted by this bug?
50+
value: Give it a 👍 We prioritize the issues with most 👍

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
blank_issues_enabled: false
1+
blank_issues_enabled: true
22

33
contact_links:
44
- name: Katib Documentation
55
url: https://www.kubeflow.org/docs/components/katib/
66
about: Much help can be found in the docs
7-
- name: AutoML Slack Channel
8-
url: https://kubeflow.slack.com/archives/C018PMV53NW
7+
- name: Kubeflow Katib Slack Channel
8+
url: https://cloud-native.slack.com/archives/C073N7AS48P
99
about: Ask the Katib community on Slack

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 18 deletions
This file was deleted.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Feature Request
2+
description: Suggest an idea for Katib
3+
labels: ["kind/feature", "lifecycle/needs-triage"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this Katib feature request!
9+
- type: textarea
10+
id: feature
11+
attributes:
12+
label: What you would like to be added?
13+
description: |
14+
A clear and concise description of what you want to add to Katib.
15+
Please consider to write Katib enhancement proposal if it is a large feature request.
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: rationale
20+
attributes:
21+
label: Why is this needed?
22+
validations:
23+
required: true
24+
- type: input
25+
id: votes
26+
attributes:
27+
label: Love this feature?
28+
value: Give it a 👍 We prioritize the features with most 👍

0 commit comments

Comments
 (0)