From cedbca186941b3f9eaee23054da59899f5fb8480 Mon Sep 17 00:00:00 2001 From: Bjorn Lammers Date: Wed, 23 Apr 2025 13:27:35 +0200 Subject: [PATCH] chore(templates): update icon submission templates for consistency --- .github/ISSUE_TEMPLATE/add_monochrome_icon.yml | 4 ++-- .github/ISSUE_TEMPLATE/add_normal_icon.yml | 4 ++-- .github/ISSUE_TEMPLATE/update_monochrome_icon.yml | 4 ++-- .github/ISSUE_TEMPLATE/update_normal_icon.yml | 4 ++-- web/src/components/icon-submission-form.tsx | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/add_monochrome_icon.yml b/.github/ISSUE_TEMPLATE/add_monochrome_icon.yml index ef0c57f1..9611d1bf 100644 --- a/.github/ISSUE_TEMPLATE/add_monochrome_icon.yml +++ b/.github/ISSUE_TEMPLATE/add_monochrome_icon.yml @@ -1,5 +1,5 @@ -name: "Add light & dark icon" -description: Use this template to add a new icon to the project. Monochrome icons need both light and dark versions. +name: "Add light/dark icon" +description: Submit a new icon with light and dark versions. title: "feat(icons): add [NAME]" labels: ["monochrome-icon"] body: diff --git a/.github/ISSUE_TEMPLATE/add_normal_icon.yml b/.github/ISSUE_TEMPLATE/add_normal_icon.yml index ded99c1e..0bd13283 100644 --- a/.github/ISSUE_TEMPLATE/add_normal_icon.yml +++ b/.github/ISSUE_TEMPLATE/add_normal_icon.yml @@ -1,5 +1,5 @@ -name: "Add normal icon" -description: Use this template to add a new icon to the project. Normal icons work for both light and dark themes. +name: "Add standard icon" +description: Submit a new icon for both light and dark themes. title: "feat(icons): add [NAME]" labels: ["normal-icon"] body: diff --git a/.github/ISSUE_TEMPLATE/update_monochrome_icon.yml b/.github/ISSUE_TEMPLATE/update_monochrome_icon.yml index 35a5010d..5ba07bc6 100644 --- a/.github/ISSUE_TEMPLATE/update_monochrome_icon.yml +++ b/.github/ISSUE_TEMPLATE/update_monochrome_icon.yml @@ -1,5 +1,5 @@ -name: "Update light & dark icon" -description: Use this template to update an existing icon. Monochrome icons need both light and dark versions. +name: "Update light/dark icon" +description: Improve or update an existing light/dark icon. title: "feat(icons): update [NAME]" labels: ["monochrome-icon"] body: diff --git a/.github/ISSUE_TEMPLATE/update_normal_icon.yml b/.github/ISSUE_TEMPLATE/update_normal_icon.yml index 1087c87c..dcae7693 100644 --- a/.github/ISSUE_TEMPLATE/update_normal_icon.yml +++ b/.github/ISSUE_TEMPLATE/update_normal_icon.yml @@ -1,5 +1,5 @@ -name: "Update normal icon" -description: Use this template to update an existing icon. Normal icons work for both light and dark themes. +name: "Update standard icon" +description: Improve or update an existing standard icon. title: "feat(icons): update [NAME]" labels: ["normal-icon"] body: diff --git a/web/src/components/icon-submission-form.tsx b/web/src/components/icon-submission-form.tsx index 03fea948..77f9d568 100644 --- a/web/src/components/icon-submission-form.tsx +++ b/web/src/components/icon-submission-form.tsx @@ -24,13 +24,13 @@ export const ISSUE_TEMPLATES = [ { id: "update_monochrome_icon", name: "Update light/dark icon", - description: "Improve an existing light/dark icon.", + description: "Improve or update an existing light/dark icon.", url: `${REPO_PATH}/issues/new?template=update_monochrome_icon.yml`, }, { id: "update_normal_icon", name: "Update standard icon", - description: "Improve an existing standard icon.", + description: "Improve or updatean existing standard icon.", url: `${REPO_PATH}/issues/new?template=update_normal_icon.yml`, }, {