Skip to content

Commit

Permalink
ci: add new issue templates for simple dev and design features (no-ep…
Browse files Browse the repository at this point in the history
…ic) [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
  • Loading branch information
karlbaumhauer authored Jul 12, 2024
1 parent c491251 commit c205664
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/simple-design-feature-issue-template.md
Original file line number Diff line number Diff line change
@@ -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
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/simple-dev-feature-template.md
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c205664

Please sign in to comment.