Skip to content

Commit 4480fd5

Browse files
enforce custom issue forms
1 parent e693243 commit 4480fd5

3 files changed

Lines changed: 123 additions & 0 deletions

File tree

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
name: Bug Report
2+
description: Create a report to help us improve
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: dropdown
7+
id: holorouter-version
8+
attributes:
9+
label: Holorouter Version
10+
description: Which version of Holorouter are you using?
11+
options:
12+
- "9.0.2"
13+
- "9.0.1"
14+
- "9.0"
15+
validations:
16+
required: true
17+
18+
- type: dropdown
19+
id: vcf-version
20+
attributes:
21+
label: VCF Version
22+
description: Which VCF version are you deploying?
23+
options:
24+
- "VCF 9.0.2.0"
25+
- "VCF 9.0.1.0"
26+
- "VCF 9.0.0.0"
27+
- "VCF 5.2.2"
28+
- "VCF 5.2.1"
29+
- "VCF 5.2"
30+
validations:
31+
required: true
32+
33+
- type: dropdown
34+
id: target-type
35+
attributes:
36+
label: Target Type
37+
description: What is your deployment target?
38+
options:
39+
- "Standalone ESX Host"
40+
- "vCenter Cluster"
41+
validations:
42+
required: true
43+
44+
- type: textarea
45+
id: bug-description
46+
attributes:
47+
label: Describe the bug
48+
description: A clear and concise description of what the bug is.
49+
placeholder: Tell us what happened
50+
validations:
51+
required: true
52+
53+
- type: textarea
54+
id: reproduction-steps
55+
attributes:
56+
label: Reproduction steps
57+
description: Steps to reproduce the behavior.
58+
value: |
59+
1.
60+
2.
61+
3.
62+
validations:
63+
required: true
64+
65+
- type: textarea
66+
id: expected-behavior
67+
attributes:
68+
label: Expected behavior
69+
description: A clear and concise description of what you expected to happen.
70+
validations:
71+
required: true
72+
73+
- type: textarea
74+
id: relevant-logs
75+
attributes:
76+
label: Relevant logs
77+
description: Paste any relevant log output. Error logs can be found at `/holodeck-runtime/logs/` on the Holorouter.
78+
render: shell
79+
80+
- type: textarea
81+
id: additional-context
82+
attributes:
83+
label: Additional context
84+
description: Add any other context about the problem here (screenshots, config snippets, etc.).

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Holodeck Documentation
4+
url: https://vmware.github.io/Holodeck/
5+
about: Check the documentation release notes for known issues related to a specific Holodeck version before opening an issue
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
title: "[Feature]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Description
10+
description: A clear and concise description of the feature you'd like to see.
11+
placeholder: Tell us what you'd like
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
id: use-case
17+
attributes:
18+
label: Use case / Motivation
19+
description: Why do you need this feature? What problem does it solve?
20+
placeholder: Describe your use case
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
id: proposed-solution
26+
attributes:
27+
label: Proposed solution
28+
description: If you have an idea for how this could be implemented, describe it here.
29+
30+
- type: textarea
31+
id: additional-context
32+
attributes:
33+
label: Additional context
34+
description: Add any other context, screenshots, or references about the feature request here.

0 commit comments

Comments
 (0)