-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add issue templates and code owners (#1)
- Loading branch information
Showing
5 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# These owners will be the default owners for everything in | ||
# the repo. Unless a later match takes precedence, | ||
# these will be requested for review when someone opens a pull request. | ||
* @trfore | ||
|
||
# The following own any files in the .github directory at the root of the | ||
# repository and any of its subdirectories. | ||
.github/ @trfore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
assignees: | ||
- trfore | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us, what did you expect to happen? | ||
placeholder: Tell us what you see! | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: shell-code | ||
attributes: | ||
label: Relevant code | ||
description: Please copy and paste any relevant shell code. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
|
||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
|
||
- type: input | ||
id: proxmox-version | ||
attributes: | ||
label: Proxmox version | ||
description: What version of Proxmox are you running? Please paste the output of `pveversion` | ||
placeholder: "pve-manager/7.4-17/513c62be (running kernel: 5.15.149-1-pve)" | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
blank_issues_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
title: "[Feature]: " | ||
labels: ["enhancement"] | ||
assignees: | ||
- trfore | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to suggest new features! | ||
- type: textarea | ||
id: problem-statement | ||
attributes: | ||
label: General problem or idea | ||
description: Is your feature request related to a problem? Please describe. | ||
placeholder: "Example: I'm always frustrated when ..." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution-statement | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: A clear and concise description of what you want to happen. | ||
- type: textarea | ||
id: alternative-solutions | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: A clear and concise description of any alternative solutions or features you've considered. | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Context | ||
description: Add any other context about the feature request. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Question | ||
description: Ask a question | ||
title: "[Question]: " | ||
labels: ["question"] | ||
assignees: | ||
- trfore | ||
body: | ||
- type: textarea | ||
id: general | ||
attributes: | ||
label: Question | ||
placeholder: What's your question? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: shell-code | ||
attributes: | ||
label: Relevant code | ||
description: Please copy and paste any relevant shell code. This will be automatically formatted into code, so no need for backticks. | ||
render: bash | ||
|
||
- type: input | ||
id: proxmox-version | ||
attributes: | ||
label: Proxmox version | ||
description: What version of Proxmox are you running? |