From c2d4c9884d8ac4e13e6c5a8a2cbd0c1a7fe355da Mon Sep 17 00:00:00 2001 From: Lennart Tinkloh Date: Thu, 15 Feb 2024 11:15:37 +0100 Subject: [PATCH] BRAIN: Community Guides --- .github/ISSUE_TEMPLATE/bug_report.yml | 35 +++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 8 ++++++ .github/PULL_REQUEST_TEMPLATE.md | 24 ++++++++++++++++++ 3 files changed, 67 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.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..3ba4ee9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,35 @@ +name: Bug report 🐛 +description: Existing feature does not behave as expected. +labels: [Bug] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: input + id: shopware-version + attributes: + label: Shopware Version + validations: + required: true + - type: textarea + id: expected-behaviour + attributes: + label: Expected behaviour + description: What did you expect to happen? + validations: + required: true + - type: textarea + id: actual-behaviour + attributes: + label: Actual behaviour + description: Please describe the issue + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: How to reproduce + description: Tell us how the bug can be reproduced + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..e4a3140 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: Ask a question + url: https://stackoverflow.com/questions/tagged/shopware6 + about: Get answers from a global community on all the technical questions that help you develop with Shopware. + - name: Join us on community Slack + url: https://slack.shopware.com + about: You may want to reach the community chat \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..7c0e45d --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,24 @@ + + +### 1. Why is this change necessary? + + +### 2. What does this change do, exactly? + + +### 3. Describe each step to reproduce the issue or behaviour. + + +### 4. Please link to the relevant issues (if any). + + +### 5. Checklist + +- [ ] I have rebased my changes to remove merge conflicts +- [ ] I have written tests and verified that they fail without my change +- [ ] This change has comments for package types, values, functions, and non-obvious lines of code +- [ ] I have read the contribution requirements and fulfil them. \ No newline at end of file