]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
github: add issue template
authorJörg Behrmann <behrmann@physik.fu-berlin.de>
Sat, 6 Apr 2024 18:27:28 +0000 (20:27 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Sun, 7 Apr 2024 14:01:02 +0000 (16:01 +0200)
.github/ISSUE_TEMPLATE/bug_report.yml [new file with mode: 0644]
.github/ISSUE_TEMPLATE/config.yml [new file with mode: 0644]

diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644 (file)
index 0000000..9bb1e16
--- /dev/null
@@ -0,0 +1,101 @@
+name: Bug Report
+description: A report of an error in mkosi
+labels: ["bug"]
+
+body:
+  - type: markdown
+    attributes:
+      value: Thanks for taking the time to fill out this bug report!
+
+  - type: input
+    id: version
+    attributes:
+      label: mkosi commit the issue has been seen with
+      description: |
+        Please do not submit bug reports against older releases, but use your distribution bug tracker.
+        Please also test whether your bug has been already resolved on the current git main.
+      placeholder: 'main'
+    validations:
+      required: true
+
+  - type: input
+    id: hostdistro
+    attributes:
+      label: Used host distribution
+      description: Used distribution on the host (or in the tools tree) and its version
+      placeholder: Fedora 39
+    validations:
+      required: false
+
+  - type: input
+    id: targetdistro
+    attributes:
+      label: Used target distribution
+      description: Used distribution for the image and its version
+      placeholder: Fedora 39
+    validations:
+      required: false
+
+  - type: input
+    id: kernel
+    attributes:
+      label: Linux kernel version used
+      description: |
+        Please use `uname -r` to get linux kernel version.
+      placeholder: kernel-6.6.8-200.fc39.x86_64
+    validations:
+      required: false
+
+  - type: dropdown
+    id: architecture
+    attributes:
+      label: CPU architectures issue was seen on
+      options:
+        - aarch64
+        - alpha
+        - arm
+        - i686
+        - ia64
+        - loongarch
+        - mips
+        - parisc
+        - ppc (big endian)
+        - ppc64 (big endian)
+        - ppc64le
+        - riscv64
+        - s390x
+        - sparc
+        - sparc64
+        - x86_64
+        - other
+    validations:
+      required: false
+
+  - type: textarea
+    id: unexpected-behaviour
+    attributes:
+      label: Unexpected behaviour you saw
+    validations:
+      required: false
+
+  - type: textarea
+    id: config
+    attributes:
+      label: Used mkosi config
+      description: |
+        Please add a, preferably minimised, mkosi config to reproduce the issue here.
+      placeholder: This will be automatically formatted into code, so no need for backticks.
+      render: ini
+    validations:
+      required: false
+
+  - type: textarea
+    id: logs
+    attributes:
+      label:
+      description: |
+        Please paste the full mkosi debug output here.
+      placeholder: This will be automatically formatted into code, so no need for backticks.
+      render: sh
+    validations:
+      required: false
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644 (file)
index 0000000..8a8d609
--- /dev/null
@@ -0,0 +1,9 @@
+---
+# vi: ts=2 sw=2 et:
+# SPDX-License-Identifier: LGPL-2.1-or-later
+
+blank_issues_enabled: true
+contact_links:
+  - name: mkosi Matrix room
+    url: https://matrix.to/#/#mkosi:matrix.org
+    about: Please ask (and answer) questions here, use the issue tracker only for issues.