From 9cac2e07688bdb3586c79c451b3d8c6840acee42 Mon Sep 17 00:00:00 2001 From: FloJuh <122517567+FloJuh@users.noreply.github.com> Date: Wed, 4 Sep 2024 00:20:24 +0200 Subject: [PATCH 1/8] Create bug.yml --- .github/ISSUE_TEMPLATE/bug.yml | 67 ++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 0000000..bb2f4ee --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,67 @@ +name: Bug Report +description: File a bug report. +labels: ["type: bug"] +body: + - type: markdown + attributes: + value: | + Need help or support? + Please don't open an issue! Head to https://chatbegruenung.de/channel/sunflower-wordpress or https://verdigado.com/kontakt/. + + - type: textarea + attributes: + label: Expected behavior + description: Tell us what should happen. + validations: + required: true + + - type: textarea + attributes: + label: Current behavior + description: Tell us what happens instead of the expected behavior. + validations: + required: true + + - type: textarea + attributes: + label: Website or Screenshots + description: If applicable, add a link to the website or add screenshots to help explain your problem. + + - type: textarea + attributes: + label: Additional context/info to reproduce + + - type: textarea + attributes: + label: Possible Fix + description: If you have suggestions on a fix for the bug. + + - type: input + attributes: + label: Devise + placeholder: "Desktop/Smartphone" + + - type: input + attributes: + label: OS + placeholder: "e.g. iOS, Android, Windows" + + - type: input + attributes: + label: Browser + placeholder: "e.g. Google Chrome, safari, Microsoft Edge, Mozilla Firefox" + + - type: input + attributes: + label: Version of the sunflower theme + placeholder: "v0.0.0" + + - type: input + attributes: + label: WordPress version + placeholder: "v0.0.0" + + - type: input + attributes: + label: PHP version + placeholder: "v0.0.0" From 9044473663ef449a5ea0289511dedc0844281829 Mon Sep 17 00:00:00 2001 From: FloJuh <122517567+FloJuh@users.noreply.github.com> Date: Wed, 4 Sep 2024 00:20:48 +0200 Subject: [PATCH 2/8] Delete .github/ISSUE_TEMPLATE/bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index c3d157e..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve sunflower theme -title: '' -labels: '' -assignees: '' ---- - -## Describe the bug -A clear and concise description of what the bug is. - -### Website or Screenshots -If applicable, add an link to the website or add screenshots to help explain your problem. - -### Environment -- Desktop/ Smartphone - - Devise: Desktop/ Smartphone - - OS: [e.g. iOS/ Android] - - Browser [e.g. chrome, safari] - - Version of the sunflower theme [e.g. 2.1.5 for recent] - - WordPress version [e.g. 6.5] - - PHP version [e.g. 8.2] - -## Additional context -Add any other context about the problem here. - -## Possible Fix From ea535ea27e1fc0ed8ecd8127e34f02b6ff58bd13 Mon Sep 17 00:00:00 2001 From: FloJuh <122517567+FloJuh@users.noreply.github.com> Date: Wed, 4 Sep 2024 00:28:12 +0200 Subject: [PATCH 3/8] Create feature.yml --- .github/ISSUE_TEMPLATE/feature.yml | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature.yml diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 0000000..9a5a8fa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,31 @@ +name: Feature Request +description: Suggest an idea +labels: ["type: enhancement"] +body: + - type: markdown + attributes: + value: | + Most features should start as plugins outside of sunflower theme. + Please consider whether your changes are useful for all users, or if this is specific to your usecase and the use plugin would be more appropriate. + + Need help or support? + Please don't open an issue! Head to https://chatbegruenung.de/channel/sunflower-wordpress or https://verdigado.com/kontakt/. + + - type: textarea + attributes: + label: Feature Proposal + description: | + What are you trying to accomplish? + Providing context helps us come up with a solution that is most useful in the real world + validations: + required: true + + - type: textarea + attributes: + label: Website or Screenshots + description: If applicable, add a link to the website or add screenshots to help explain your problem. + + - type: textarea + attributes: + label: Possible Implementation + description: Not obligatory, but suggest ideas for how to implement the addition or change From 0e0a1b70abc9c60e38dc1448407a88568c3216fc Mon Sep 17 00:00:00 2001 From: FloJuh <122517567+FloJuh@users.noreply.github.com> Date: Wed, 4 Sep 2024 00:31:15 +0200 Subject: [PATCH 4/8] Create docs.yml --- .github/ISSUE_TEMPLATE/docs.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/docs.yml diff --git a/.github/ISSUE_TEMPLATE/docs.yml b/.github/ISSUE_TEMPLATE/docs.yml new file mode 100644 index 0000000..89ee474 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/docs.yml @@ -0,0 +1,23 @@ +name: Documentation +description: Are the docs lacking or missing something? +labels: ["type: documentation"] +body: + - type: checkboxes + attributes: + label: "Documentation is:" + options: + - label: Missing or needed? + - label: Confusing + - label: Not sure? + + - type: textarea + attributes: + label: Please Explain in Detail + validations: + required: true + + - type: textarea + attributes: + label: Your Proposal for Changes + validations: + required: true From 7bd742eb30f77332afc6a528c55948208f5a4429 Mon Sep 17 00:00:00 2001 From: FloJuh <122517567+FloJuh@users.noreply.github.com> Date: Wed, 4 Sep 2024 00:39:45 +0200 Subject: [PATCH 5/8] Update bug.yml --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index bb2f4ee..6d14b958 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -1,6 +1,6 @@ name: Bug Report description: File a bug report. -labels: ["type: bug"] +labels: ["bug"] body: - type: markdown attributes: From d70b5299eca42c296b61f044656071caae59ecab Mon Sep 17 00:00:00 2001 From: FloJuh <122517567+FloJuh@users.noreply.github.com> Date: Wed, 4 Sep 2024 00:40:18 +0200 Subject: [PATCH 6/8] Update docs.yml --- .github/ISSUE_TEMPLATE/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/docs.yml b/.github/ISSUE_TEMPLATE/docs.yml index 89ee474..dcaff0f 100644 --- a/.github/ISSUE_TEMPLATE/docs.yml +++ b/.github/ISSUE_TEMPLATE/docs.yml @@ -1,6 +1,6 @@ name: Documentation description: Are the docs lacking or missing something? -labels: ["type: documentation"] +labels: ["documentation"] body: - type: checkboxes attributes: From 0ae48392b9cc80ef58748b53cc526ceb064fd150 Mon Sep 17 00:00:00 2001 From: FloJuh <122517567+FloJuh@users.noreply.github.com> Date: Wed, 4 Sep 2024 00:40:31 +0200 Subject: [PATCH 7/8] Update feature.yml --- .github/ISSUE_TEMPLATE/feature.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index 9a5a8fa..0b0f532 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -1,6 +1,6 @@ name: Feature Request description: Suggest an idea -labels: ["type: enhancement"] +labels: ["enhancement"] body: - type: markdown attributes: From c2346a6f0ef483e673a630b31339d26f053066ef Mon Sep 17 00:00:00 2001 From: FloJuh <122517567+FloJuh@users.noreply.github.com> Date: Wed, 4 Sep 2024 01:02:53 +0200 Subject: [PATCH 8/8] Update feature.yml --- .github/ISSUE_TEMPLATE/feature.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index 0b0f532..1e2d689 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -6,7 +6,7 @@ body: attributes: value: | Most features should start as plugins outside of sunflower theme. - Please consider whether your changes are useful for all users, or if this is specific to your usecase and the use plugin would be more appropriate. + Please consider whether your changes are useful for all users, or if this is specific to your usecase and the use of a plugin would be more appropriate. Need help or support? Please don't open an issue! Head to https://chatbegruenung.de/channel/sunflower-wordpress or https://verdigado.com/kontakt/.