Skip to content

Commit a219409

Browse files
authored
chore: add issue templates and code owners (#1)
1 parent dc4338c commit a219409

File tree

5 files changed

+115
-0
lines changed

5 files changed

+115
-0
lines changed

.github/CODEOWNERS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# These owners will be the default owners for everything in
2+
# the repo. Unless a later match takes precedence,
3+
# these will be requested for review when someone opens a pull request.
4+
* @trfore
5+
6+
# The following own any files in the .github directory at the root of the
7+
# repository and any of its subdirectories.
8+
.github/ @trfore
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
assignees:
6+
- trfore
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this bug report!
12+
13+
- type: textarea
14+
id: what-happened
15+
attributes:
16+
label: What happened?
17+
description: Also tell us, what did you expect to happen?
18+
placeholder: Tell us what you see!
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: shell-code
24+
attributes:
25+
label: Relevant code
26+
description: Please copy and paste any relevant shell code. This will be automatically formatted into code, so no need for backticks.
27+
render: shell
28+
29+
- type: textarea
30+
id: logs
31+
attributes:
32+
label: Relevant log output
33+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
34+
render: shell
35+
36+
- type: input
37+
id: proxmox-version
38+
attributes:
39+
label: Proxmox version
40+
description: What version of Proxmox are you running? Please paste the output of `pveversion`
41+
placeholder: "pve-manager/7.4-17/513c62be (running kernel: 5.15.149-1-pve)"
42+
validations:
43+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
blank_issues_enabled: false
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: Feature request
3+
description: Suggest an idea for this project
4+
title: "[Feature]: "
5+
labels: ["enhancement"]
6+
assignees:
7+
- trfore
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thanks for taking the time to suggest new features!
13+
- type: textarea
14+
id: problem-statement
15+
attributes:
16+
label: General problem or idea
17+
description: Is your feature request related to a problem? Please describe.
18+
placeholder: "Example: I'm always frustrated when ..."
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: solution-statement
23+
attributes:
24+
label: Describe the solution you'd like
25+
description: A clear and concise description of what you want to happen.
26+
- type: textarea
27+
id: alternative-solutions
28+
attributes:
29+
label: Describe alternatives you've considered
30+
description: A clear and concise description of any alternative solutions or features you've considered.
31+
- type: textarea
32+
id: additional-context
33+
attributes:
34+
label: Additional Context
35+
description: Add any other context about the feature request.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Question
2+
description: Ask a question
3+
title: "[Question]: "
4+
labels: ["question"]
5+
assignees:
6+
- trfore
7+
body:
8+
- type: textarea
9+
id: general
10+
attributes:
11+
label: Question
12+
placeholder: What's your question?
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: shell-code
18+
attributes:
19+
label: Relevant code
20+
description: Please copy and paste any relevant shell code. This will be automatically formatted into code, so no need for backticks.
21+
render: bash
22+
23+
- type: input
24+
id: proxmox-version
25+
attributes:
26+
label: Proxmox version
27+
description: What version of Proxmox are you running?

0 commit comments

Comments
 (0)