aboutsummaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE
diff options
context:
space:
mode:
Diffstat (limited to '.github/ISSUE_TEMPLATE')
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.yml54
-rw-r--r--.github/ISSUE_TEMPLATE/config.yml1
-rw-r--r--.github/ISSUE_TEMPLATE/feature_request.yml25
-rw-r--r--.github/ISSUE_TEMPLATE/question.yml13
4 files changed, 93 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index 0000000..82834ef
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,54 @@
+name: Bug report
+description: Report bugs or other issues
+labels: ["bug"]
+
+body:
+ - type: markdown
+ attributes:
+ value: Before filing this bug, [please check if it hasn't already been reported](https://github.com/Mattiwatti/EfiGuard/issues?q=is%3Aissue+label%3Abug). If it has, please add useful information to the existing issue instead.
+
+ - type: input
+ id: os
+ attributes:
+ label: Operating system
+ placeholder: Windows 11 x64 build 22621
+ validations:
+ required: true
+
+ - type: textarea
+ id: description
+ attributes:
+ label: Issue description
+ description: Briefly describe your issue here.
+ validations:
+ required: true
+
+ - type: textarea
+ id: repro
+ attributes:
+ label: Steps to reproduce
+ description: Describe in small and detailed steps how to reproduce the issue.
+ value: |
+ 1.
+ 2.
+ validations:
+ required: true
+
+ - type: textarea
+ id: logs
+ attributes:
+ label: Logs
+ description: If you can provide relevant logs (e.g. of `analyze -v`), please paste them here. The output of `EfiDSEFix -i` is also often helpful when diagnosing EfiGuard issues.
+ placeholder: Paste logs here
+ render: shell
+ validations:
+ required: false
+
+ - type: textarea
+ id: attachments
+ attributes:
+ label: Attachments
+ description: If you can provide crash dumps, photos or screenshots that may help to investigate the issue, please add them here.
+ placeholder: Drag and drop files here
+ validations:
+ required: false
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000..0086358
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1 @@
+blank_issues_enabled: true
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml
new file mode 100644
index 0000000..844b990
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.yml
@@ -0,0 +1,25 @@
+name: Feature request
+description: Suggest features, modifications or ideas
+labels: ["feature"]
+
+body:
+ - type: markdown
+ attributes:
+ value: Before filing this request, [please check if it hasn't already been suggested before](https://github.com/Mattiwatti/EfiGuard/issues?q=is%3Aissue+label%3Afeature). If it has, please add to the existing issue instead.
+
+ - type: textarea
+ id: description
+ attributes:
+ label: Feature description
+ description: Briefly describe your idea, suggestion or proposed feature.
+ validations:
+ required: true
+
+ - type: textarea
+ id: implementation
+ attributes:
+ label: Implementation
+ description: Thoughts on possible implementation details go here (optional).
+ placeholder: Suggest how to implement the feature.
+ validations:
+ required: false
diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml
new file mode 100644
index 0000000..d2442d8
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/question.yml
@@ -0,0 +1,13 @@
+name: Question
+description: Questions about EfiGuard
+labels: ["question"]
+
+body:
+ - type: textarea
+ id: description
+ attributes:
+ label: Question description
+ description: What is your question? Please make sure it is related to EfiGuard.
+ placeholder: Ask your question here.
+ validations:
+ required: true