From 4b28f250e3259088f5877c828561662a424bacd5 Mon Sep 17 00:00:00 2001 From: Sasha <118575614+weboko@users.noreply.github.com> Date: Thu, 16 Jan 2025 14:57:14 +0100 Subject: [PATCH] chore: update issue templates (#2206) * feat: update issue templates * remove old issue template, add new pull request template --- .github/ISSUE_TEMPLATE.md | 43 --------------- .github/ISSUE_TEMPLATE/🚀-feature-request.md | 53 ++++++++++++++++++ .github/ISSUE_TEMPLATE/🪳-bug-report.md | 58 ++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 44 ++++++++------- 4 files changed, 135 insertions(+), 63 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/ISSUE_TEMPLATE/🚀-feature-request.md create mode 100644 .github/ISSUE_TEMPLATE/🪳-bug-report.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 817b9dbbe4..0000000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,43 +0,0 @@ - -This is a **bug report/feature request/support request/change request** - -## Problem - - - -## Proposed Solutions - - - -## Notes - - diff --git a/.github/ISSUE_TEMPLATE/🚀-feature-request.md b/.github/ISSUE_TEMPLATE/🚀-feature-request.md new file mode 100644 index 0000000000..96c620d3d8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/🚀-feature-request.md @@ -0,0 +1,53 @@ +--- +name: "\U0001F680 Feature request" +about: Suggest an idea for this project +title: 'feat:' +labels: '' +assignees: '' + +--- + + + +### Description + + +### User Story + + +### Proposed Solution / Feature Design + + +#### Optional: Diagram or Draft of Design + + +### Notes + diff --git a/.github/ISSUE_TEMPLATE/🪳-bug-report.md b/.github/ISSUE_TEMPLATE/🪳-bug-report.md new file mode 100644 index 0000000000..a5dd961f50 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/🪳-bug-report.md @@ -0,0 +1,58 @@ +--- +name: "\U0001FAB3 Bug report" +about: Create a report about a problem, observation or feedback. +title: 'bug: ' +labels: '' +assignees: '' + +--- + + + +### Description + + +### Expected Behavior + + +### Steps to Reproduce + + +### Environment Details + + +
+Logs + + + +[Paste logs here] + +
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 7ff010b7de..d6331b9e27 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,26 +1,30 @@ -## Problem - +### Problem / Description -## Solution +### Solution + - +### Notes + +- Resolves +- Related to -## Notes +--- - - -- Resolves -- Related to - -Contribution checklist: -- [ ] covered by unit tests; -- [ ] covered by e2e test; -- [ ] add `!` in title if breaks public API; +#### Checklist +- [ ] Code changes are **covered by unit tests**. +- [ ] Code changes are **covered by e2e tests**, if applicable. +- [ ] **Dogfooding has been performed**, if feasible. +- [ ] A **test version has been published**, if required. +- [ ] All **CI checks** pass successfully.