From 42ca261fd2cd692f19293e5dd6317681f4cc4715 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Lapersonne Date: Mon, 23 Sep 2024 16:47:35 +0200 Subject: [PATCH] chore: add issue template for tokens updates request Signed-off-by: Pierre-Yves Lapersonne --- .github/ISSUE_TEMPLATE/token_update.yml | 41 +++++++++++++++++++++++++ CHANGELOG.md | 1 + 2 files changed, 42 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/token_update.yml diff --git a/.github/ISSUE_TEMPLATE/token_update.yml b/.github/ISSUE_TEMPLATE/token_update.yml new file mode 100644 index 000000000..ce45dfc3a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/token_update.yml @@ -0,0 +1,41 @@ +name: Token Update Request +description: Please fill out the following details for your token update request. +title: "[Token Update] - Title" +labels: ["📀 token", "🔍 triage"] +assignees: ["ludovic35", "pylapp"] +body: + - type: markdown + attributes: + value: | + ### Type of tokens + Please fill the checkboxes of the token type you want to update: + - [ ] Raw token (i.e. associated to _SwiftUI_ or _Swift_ value) + - [ ] Semantic token (i.e. pointing to a raw token) + - [ ] Component token (i.e. pointing to a semantic token, used for a component) + - type: textarea + id: description + attributes: + label: Description + description: Describe your need in details + - type: textarea + id: motivation_context + attributes: + label: Motivation & Context + description: Why is this change required? What problem does it solve? + - type: markdown + attributes: + value: | + ### Types of change + Please fill the suitable items in the list: + - [ ] Add new tokens + - [ ] Update existing tokens (i.e. change name or value) + - [ ] Remove existing token + - type: markdown + attributes: + value: | + ### Checklist for Core Team + - [ ] Tokens have been updated + - [ ] Documentation have been updated + - [ ] Unit tests have been updated + - [ ] Retrocompatibility has been checked, or broken API have been flagged as deprecated without a workaround + diff --git a/CHANGELOG.md b/CHANGELOG.md index 42312806f..bccc6d3ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- [Tool] GitHub issue template for tokens update request - [Library] Add letter spacing and more font family tokens for typography ([#51](https://github.com/Orange-OpenSource/ouds-ios/issues/51)) - [Library] Add `elevationX200` raw token ([#119](https://github.com/Orange-OpenSource/ouds-ios/issues/119))