From afc5067573cb1f6df72e75ef3baacf9a2fcb8178 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 16 May 2024 12:27:25 +0200 Subject: [PATCH] Fix labels in Gitea issue templates The Gitea labels have been updated from `type::Report` to `Type/Report`, but the issue templates were still using the old style. --- .gitea/issue_template/bug.yaml | 6 +++--- .gitea/issue_template/design.yaml | 2 +- .gitea/issue_template/todo.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/issue_template/bug.yaml b/.gitea/issue_template/bug.yaml index c9029a79..059894cd 100644 --- a/.gitea/issue_template/bug.yaml +++ b/.gitea/issue_template/bug.yaml @@ -1,9 +1,9 @@ name: Bug Report about: File a bug report labels: - - "type::Report" - - "status::Needs Triage" - - "priority::Normal" + - "Type/Report" + - "Status/Needs Triage" + - "Priority/Normal" body: - type: markdown attributes: diff --git a/.gitea/issue_template/design.yaml b/.gitea/issue_template/design.yaml index a1dcd8b0..77195a8c 100644 --- a/.gitea/issue_template/design.yaml +++ b/.gitea/issue_template/design.yaml @@ -1,7 +1,7 @@ name: Design about: Create a design task (for developers only) labels: - - "type::Design" + - "Type/Design" body: - type: textarea id: body diff --git a/.gitea/issue_template/todo.yaml b/.gitea/issue_template/todo.yaml index 58e848c3..325238af 100644 --- a/.gitea/issue_template/todo.yaml +++ b/.gitea/issue_template/todo.yaml @@ -1,7 +1,7 @@ name: To Do about: Create a to do task (for developers only) labels: - - "type::To Do" + - "Type/To Do" body: - type: textarea id: body