From f410dff59aa9416c92bf1f76a8f9e167f484730c Mon Sep 17 00:00:00 2001 From: viktorbeck98 Date: Tue, 31 Mar 2026 14:23:25 +0200 Subject: [PATCH] add issue and PR templates --- .github/ISSUE_TEMPLATE/01_bug_report.md | 21 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/02_feature_request.md | 20 +++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/pull_request_template.md | 19 ++++++++++++++++++ 4 files changed, 61 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/01_bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/02_feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/01_bug_report.md b/.github/ISSUE_TEMPLATE/01_bug_report.md new file mode 100644 index 0000000..8495c6c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/01_bug_report.md @@ -0,0 +1,21 @@ +--- +name: 🐜 Bug report +about: If something isn't working 🔧 +--- + +### Subject of the issue +Describe your issue here. + +### Your environment +* Version of detectmate +* Version of python +* Docker or manual installation? + +### Steps to reproduce +Tell us how to reproduce this issue. + +### Expected behaviour +Tell us what should happen + +### Actual behaviour +Tell us what happens instead diff --git a/.github/ISSUE_TEMPLATE/02_feature_request.md b/.github/ISSUE_TEMPLATE/02_feature_request.md new file mode 100644 index 0000000..442b05c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/02_feature_request.md @@ -0,0 +1,20 @@ +--- +name: 🚀 Feature request +about: If you have a feature request 💡 +--- + +**Context** + +What are you trying to do and how would you want to do it differently? Is it something you currently you cannot do? Is this related to an issue/problem? + +**Alternatives** + +Can you achieve the same result doing it in an alternative way? Is the alternative considerable? + +**Has the feature been requested before?** + +Please provide a link to the issue. + +**If the feature request is approved, would you be willing to submit a PR?** + +Yes / No _(Help can be provided if you need assistance submitting a PR)_ diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..3ba13e0 --- /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 0000000..53dec30 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,19 @@ +# Task + + +# Description + + + + +# How Has This Been Tested? + + +# Checklist + + +- [ ] This Pull-Request goes to the **development** branch. +- [ ] I have successfully run prek locally. +- [ ] I have added tests to cover my changes. +- [ ] I have linked the issue-id to the task-description. +- [ ] I have performed a self-review of my own code.