Skip to content

Commit

Permalink
chore: add issue templates and code owners (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
trfore authored Nov 5, 2024
1 parent dc4338c commit a219409
Show file tree
Hide file tree
Showing 5 changed files with 115 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/CODEOWNERS
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
43 changes: 43 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
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
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
blank_issues_enabled: false
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
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.
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/question.yml
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?

0 comments on commit a219409

Please sign in to comment.