From afec343f57fb11aa8192fb4e4daaca2e6e76562a Mon Sep 17 00:00:00 2001 From: Ismail Pelaseyed Date: Wed, 13 May 2026 22:08:03 +0200 Subject: [PATCH] Add GitHub contribution templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 24 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 13 ++++++++++++ .github/pull_request_template.md | 10 +++++++++ 3 files changed, 47 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..bf0f71d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,24 @@ +name: Bug Report +description: File a bug report +title: "[Bug]: " +labels: ["bug"] +body: + - type: textarea + id: description + attributes: + label: Bug Description + description: Describe what happened and what you expected + placeholder: What went wrong? + validations: + required: true + + - type: textarea + id: steps + attributes: + label: Steps to reproduce + placeholder: | + 1. + 2. + 3. + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..d03eadb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,13 @@ +name: Feature Request +description: Suggest an idea for this project +title: "[Feature]: " +labels: ["enhancement"] +body: + - type: textarea + id: description + attributes: + label: Feature Description + description: What feature would you like to see? + placeholder: Describe the feature you'd like + validations: + required: true diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..e9827d0 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,10 @@ +## What does this PR do? + +Describe your changes here. + +Fixes # + +## Checklist + +- [ ] I tested my changes +- [ ] I reviewed my own code