From 1343be58d776e153d2691dc6f4c1bd6be5b36956 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sun, 30 Jul 2023 12:14:00 +0100 Subject: Add some templates for people filing issues on GitHub. --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 33 +++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 15 ++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/PULL_REQUEST_TEMPLATE.md | 38 +++++++++++++++++++++++++++++++ 4 files changed, 87 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT.md create mode 100644 .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/PULL_REQUEST_TEMPLATE.md (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md new file mode 100644 index 000000000..99e497e8d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -0,0 +1,33 @@ +--- +name: Bug report +about: Report a non-security issue with Anope. +--- + + + +**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_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md new file mode 100644 index 000000000..a2191c0e0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md @@ -0,0 +1,15 @@ +--- +name: Feature request +about: Request that a new feature is added to Anope. +--- + + + +**Description** + + + +**Why this would be useful** + diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..3ba13e0ce --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..928e331d1 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,38 @@ + + +## Summary + + + +## Rationale + + + +## Testing Environment + + + +I have tested this pull request on: + +**Operating system name and version:** +**Compiler name and version:** + +## Checks + + + +I have ensured that: + + - [ ] This pull request does not introduce any incompatible API changes. + - [ ] If ABI changes have been made I have incremented MODULE_ABI in `moduledefs.h`. + - [ ] I have documented any features added by this pull request. -- cgit