From c205664e3af519b9b880100161894397273af1be Mon Sep 17 00:00:00 2001 From: Karl Baumhauer <48211526+karlbaumhauer@users.noreply.github.com> Date: Fri, 12 Jul 2024 14:54:20 +0200 Subject: [PATCH] ci: add new issue templates for simple dev and design features (no-epic) [skip chromatic] (#1208) ## Description: adds 2 new issue templates to the project: - simple dev issue for features which are not an epic - simple design issue for features which are not an epic --- .../simple-design-feature-issue-template.md | 28 ++++++++++++++++++ .../simple-dev-feature-template.md | 29 +++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/simple-design-feature-issue-template.md create mode 100644 .github/ISSUE_TEMPLATE/simple-dev-feature-template.md diff --git a/.github/ISSUE_TEMPLATE/simple-design-feature-issue-template.md b/.github/ISSUE_TEMPLATE/simple-design-feature-issue-template.md new file mode 100644 index 000000000..849dfa414 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/simple-design-feature-issue-template.md @@ -0,0 +1,28 @@ +--- +name: Simple Design Feature Issue +about: Simple Feature Issue Template for Design +title: 'feat[design]: ✨ [FEATURE_NAME]' +labels: '🎨 figma' +assignees: '' + +--- + +## User Story +As a [PERSONA] of the Solid Design System, I would like to [REQUIRE], as well as [FURTHER_REQUIREMENT], so that [PRODUCT_VALUE], and [FURTHER_PRODUCT_VALUE]. + +### Suggested Solution + +### Technical Information + +## DoR +- [ ] Item has business value +- [ ] Item has been estimated by the team +- [ ] Item is clear and well-defined +- [ ] Item dependencies have been identified + +## DoD +- [ ] Brand approval (if neccessary) +- [ ] Figma documentation file incl. hand-off has been created/updated (if applicable) +- [ ] Tokens have been applied/updated (if applicable) +- [ ] Crosslinks are created/updated +- [ ] Implementation works successfully on `figma` branch diff --git a/.github/ISSUE_TEMPLATE/simple-dev-feature-template.md b/.github/ISSUE_TEMPLATE/simple-dev-feature-template.md new file mode 100644 index 000000000..cacc5c5d8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/simple-dev-feature-template.md @@ -0,0 +1,29 @@ +--- +name: Simple Dev Feature Issue +about: Simple Feature Issue Template for Development +title: 'feat[dev]: ✨ [FEATURE_NAME]' +labels: '🔧 code' +assignees: '' + +--- + +## User Story +As a [PERSONA] of the Solid Design System, I would like to [REQUIRE], as well as [FURTHER_REQUIREMENT], so that [PRODUCT_VALUE], and [FURTHER_PRODUCT_VALUE]. + +### Suggested Solution + +### Technical Information + +## DoR +- [ ] Item has business value +- [ ] Item has been estimated by the team +- [ ] Item is clear and well-defined +- [ ] Item dependencies have been identified + +## DoD +- [ ] Documentation has been created/updated (if applicable) +- [ ] Migration Guide has been created/updated (if applicable) +- [ ] Relevant E2E tests (Features, A11y, Bug fixes) are created/updated +- [ ] Relevant stories (Features, A11y) are created/updated +- [ ] Implementation works successfully on `feature` branch +