From 051623caa5b888fe992e792858b1d987774cf720 Mon Sep 17 00:00:00 2001 From: Robin Candau Date: Tue, 2 Jul 2024 23:28:18 +0200 Subject: [PATCH] chore: Add templates for issues and pull requests Add templates for issues and pull requests to categorize each possible issue type properly and ask some relevant details to users in order to ease processing Partially addresses https://github.com/Antiz96/arch-update/issues/183 --- .github/ISSUE_TEMPLATE/bug_report.md | 43 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 26 ++++++++++++++ .github/ISSUE_TEMPLATE/other.md | 8 +++++ .github/PULL_REQUEST_TEMPLATE.md | 25 +++++++++++++ 4 files changed, 102 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/other.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..8792426 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,43 @@ +--- +Name: Bug report +About: Report a bug +Labels: 'bug' +Assignees: 'Antiz96' +--- + + + +### Environment + + + +- Distribution: +- Arch-Update version: + +### Arch-Update configuration + + + +```text +Paste your arch-update.conf configuration file here (if you use one) +``` + +### Description of the bug + + + +### Screenshots / Logs + + + +```text +Paste any relevant logs here (if you have some) +``` + +### Additional context + + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..1182c73 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,26 @@ +--- +Name: Feature request +About: Suggest an idea or a new feature +Labels: 'feature/request' +Assignees: 'Antiz96' +--- + + + +### Description + + + +### Motivation and context + + + +### Screenshots / Logs + + + +```text +Paste any relevant logs here (if you have some) +``` diff --git a/.github/ISSUE_TEMPLATE/other.md b/.github/ISSUE_TEMPLATE/other.md new file mode 100644 index 0000000..8111ef3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/other.md @@ -0,0 +1,8 @@ +--- +Name: Other (General question or feedback) +About: Ask a general question or provide a feedback +Labels: '' +Assignees: 'Antiz96' +--- + + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..6dfd075 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,25 @@ + + +### Description + + + +### Screenshots / Logs + + + +```text +Paste any relevant logs here (if you have some) +``` + +### Fixed bug + + + +Fixes "issue_URL" + +### Addressed feature request + + + +Closes "issue_URL"