From 56c68d7828f68dbeb8f1d86fa5f387aec35b36ff Mon Sep 17 00:00:00 2001 From: Jason-Vaughan <95194903+Jason-Vaughan@users.noreply.github.com> Date: Sat, 1 Aug 2026 11:51:40 -0700 Subject: [PATCH] Fix issue templates referencing a nonexistent label MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit feature.md and add-backend.md declared `labels: feature`, but the repo has never had a `feature` label — only `enhancement`. Filing through the GitHub UI silently dropped the label, and `gh issue create --label feature` failed outright (hit while filing #85). Both templates now use `enhancement`, and the `backend` label add-backend.md also referenced has been created. --- .github/ISSUE_TEMPLATE/add-backend.md | 2 +- .github/ISSUE_TEMPLATE/feature.md | 2 +- CHANGELOG.md | 8 ++++++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/add-backend.md b/.github/ISSUE_TEMPLATE/add-backend.md index 4a0f4e0..100a571 100644 --- a/.github/ISSUE_TEMPLATE/add-backend.md +++ b/.github/ISSUE_TEMPLATE/add-backend.md @@ -2,7 +2,7 @@ name: Add a backend / adapter about: Propose or document support for a new routable backend title: "[backend] " -labels: feature, backend +labels: enhancement, backend --- Adding a backend is usually a **config edit, not a code change** — a new roster entry, not new diff --git a/.github/ISSUE_TEMPLATE/feature.md b/.github/ISSUE_TEMPLATE/feature.md index 26e8da3..3e7e400 100644 --- a/.github/ISSUE_TEMPLATE/feature.md +++ b/.github/ISSUE_TEMPLATE/feature.md @@ -2,7 +2,7 @@ name: Feature request about: Suggest a new capability or improvement title: "[feature] " -labels: feature +labels: enhancement --- ## Problem / motivation diff --git a/CHANGELOG.md b/CHANGELOG.md index c69530b..80c9613 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Internal + +- **Issue templates now declare labels that exist.** `feature.md` and `add-backend.md` asked for a + `feature` label the repo has never had, so `gh issue create` failed outright on it and + UI-filed issues landed unlabeled. Both now use `enhancement`; the `backend` label + `add-backend.md` also referenced has been created. Every label named across the three + templates now resolves. + ## [0.20.1] - 2026-08-01 ### Fixed