Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github: Rework issue templates #1827

Merged
merged 1 commit into from
Mar 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 0 additions & 37 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

66 changes: 66 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-reports.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Bug report
description: File a bug report.
type: bug
body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: There is no existing issue for this bug
required: true

- type: checkboxes
attributes:
label: Is this happening on an up to date version of Incus?
description: Please make sure that your system has all updates applied and is running a current version of Incus or Incus LTS.
options:
- label: This is happening on a supported version of Incus
required: true

- type: textarea
attributes:
label: Incus system details
description: Output of `incus info`.
render: yaml
validations:
required: true

- type: textarea
attributes:
label: Instance details
description: If the issue affects an instance, please include the output of `incus config show NAME`.
validations:
required: false

- type: textarea
attributes:
label: Instance log
description: If the issue is related to an instance startup failure, please include `incus info --show-log NAME`.
validations:
required: false

- type: textarea
attributes:
label: Current behavior
description: A concise description of what you're experiencing.
validations:
required: false

- type: textarea
attributes:
label: Expected behavior
description: A concise description of what you expected to happen.
validations:
required: false

- type: textarea
attributes:
label: Steps to reproduce
description: Step by step instructions to reproduce the behavior.
placeholder: |
1. Step one
2. Step two
3. Step three
validations:
required: true
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Support question
url: https://discuss.linuxcontainers.org
about: Please ask and answer questions here.
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Feature request
description: File a feature request.
type: feature
body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the feature you'd like to see added.
options:
- label: There is no existing issue for this feature
required: true

- type: textarea
attributes:
label: What are you currently unable to do
description: A concise description of the problem you're trying to solve.
validations:
required: true

- type: textarea
attributes:
label: What do you think would need to be added
description: A concise description of what you think should be added to Incus.
validations:
required: false