From 4e8f665a194c0fe6246c6d29e2cdb86415a66a2f Mon Sep 17 00:00:00 2001 From: Benjamin Lu Date: Wed, 20 Aug 2025 19:01:24 -0400 Subject: [PATCH] [bugfix] Remove empty title field from issue templates (#5136) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed `title: ''` from bug report and feature request templates 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude --- .github/ISSUE_TEMPLATE/bug-report.yaml | 1 - .github/ISSUE_TEMPLATE/feature-request.yaml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml index 8e0183fd8..4405aad1f 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yaml +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -1,6 +1,5 @@ name: Bug Report description: 'Report something that is not working correctly' -title: '' labels: ['Potential Bug'] type: Bug diff --git a/.github/ISSUE_TEMPLATE/feature-request.yaml b/.github/ISSUE_TEMPLATE/feature-request.yaml index 3fcaa08a8..0d8173b28 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yaml +++ b/.github/ISSUE_TEMPLATE/feature-request.yaml @@ -1,6 +1,5 @@ name: Feature Request description: Report a problem or limitation you're experiencing -title: '' labels: [] type: Feature