summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-11-08 12:05:43 +0000
committerSadie Powell <sadie@witchery.services>2024-11-08 12:07:19 +0000
commit4952a9c852978bf9bd6e0546aa7d1d3f86a34b9f (patch)
tree6d4ff9a57d8448396a87b37902a9b946ad3b869e
parent59647baff923d18ae5b104276bef360b900371f1 (diff)
Migrate from Markdown to YAML issue templates.
-rw-r--r--.github/ISSUE_TEMPLATE/BUG.yml44
-rw-r--r--.github/ISSUE_TEMPLATE/BUG_REPORT.md33
-rw-r--r--.github/ISSUE_TEMPLATE/FEATURE.yml20
-rw-r--r--.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md15
-rw-r--r--.github/ISSUE_TEMPLATE/config.yml4
5 files changed, 68 insertions, 48 deletions
diff --git a/.github/ISSUE_TEMPLATE/BUG.yml b/.github/ISSUE_TEMPLATE/BUG.yml
new file mode 100644
index 000000000..6ecf407f1
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/BUG.yml
@@ -0,0 +1,44 @@
+---
+name: Bug report
+description: Report a non-security bug in Anope.
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Thanks for taking the time to fill out this bug report!
+
+ If you're looking for help with setting up your services please post on [our support forum](https://github.com/orgs/anope/discussions/categories/support) instead.
+
+ If you're reporting a crash or other security issue [please read our security policy](https://github.com/anope/anope/security/policy#reporting-a-vulnerability) for how to report security issues privately.
+
+ - type: textarea
+ attributes:
+ label: Description
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Steps to reproduce the issue
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Describe the results you received
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Describe the results you expected
+ validations:
+ required: true
+
+ - type: input
+ attributes:
+ label: Anope version
+ description: |-
+ Either the output of `services --version` (2.0) or `anope --version` (2.1).
+ validations:
+ required: true
diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md
deleted file mode 100644
index ba7f67999..000000000
--- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md
+++ /dev/null
@@ -1,33 +0,0 @@
----
-name: Bug report
-about: Report a non-security issue with Anope.
----
-
-<!--
-Please fill in the template below. It will help us process your bug report a lot faster. If you have multiple bugs to report then please open one issue for each bug.
--->
-
-**Description**
-
-
-
-**Steps to reproduce the issue:**
-
-1.
-2.
-3.
-
-**Describe the results you received:**
-
-
-
-**Describe the results you expected:**
-
-
-
-**Additional information you deem important (e.g. issue happens only occasionally):**
-
-
-
-**Output of `services --version`:**
-
diff --git a/.github/ISSUE_TEMPLATE/FEATURE.yml b/.github/ISSUE_TEMPLATE/FEATURE.yml
new file mode 100644
index 000000000..625f1284f
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/FEATURE.yml
@@ -0,0 +1,20 @@
+---
+name: Feature request
+description: Request that a new feature is added to Anope.
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Thanks for taking the time to fill out this feature request!
+
+ - type: textarea
+ attributes:
+ label: Description
+ validations:
+ required: true
+
+ - type: textarea
+ attributes:
+ label: Why this would be useful?
+ validations:
+ required: true
diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md
deleted file mode 100644
index 8b64999a4..000000000
--- a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md
+++ /dev/null
@@ -1,15 +0,0 @@
----
-name: Feature request
-about: Request that a new feature is added to Anope.
----
-
-<!--
-Please fill in the template below. It will help us process your feature request a lot faster. If you have multiple features to request then please open one issue for each feature.
--->
-
-**Description**
-
-
-
-**Why this would be useful**
-
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index 3ba13e0ce..5ac78f510 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -1 +1,5 @@
blank_issues_enabled: false
+contact_links:
+ - name: Support forum
+ url: https://github.com/orgs/anope/discussions/categories/support
+ about: Please ask support questions here.