From ea6a72149b7396a6ca2ccb6123a00f50086ef9bd Mon Sep 17 00:00:00 2001 From: Anton Trunov Date: Sun, 25 Aug 2024 22:54:47 +0900 Subject: [PATCH] chore: fix issue templates (#742) According to the docs, the `title` field is optional: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms --- .github/ISSUE_TEMPLATE/01-feature-request.yml | 1 - .github/ISSUE_TEMPLATE/02-bug-report.yml | 1 - .github/ISSUE_TEMPLATE/03-other.yml | 1 - 3 files changed, 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/01-feature-request.yml b/.github/ISSUE_TEMPLATE/01-feature-request.yml index 99f5e8567..2aa6944b9 100644 --- a/.github/ISSUE_TEMPLATE/01-feature-request.yml +++ b/.github/ISSUE_TEMPLATE/01-feature-request.yml @@ -1,6 +1,5 @@ name: Feature Request description: File a feature request. -title: "" labels: ["language feature", "triage"] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/02-bug-report.yml b/.github/ISSUE_TEMPLATE/02-bug-report.yml index 8c31be6d6..f7f910ee1 100644 --- a/.github/ISSUE_TEMPLATE/02-bug-report.yml +++ b/.github/ISSUE_TEMPLATE/02-bug-report.yml @@ -1,6 +1,5 @@ name: Bug Report description: File a bug report. -title: "" labels: ["bug", "triage"] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/03-other.yml b/.github/ISSUE_TEMPLATE/03-other.yml index f8693ac17..4067a5903 100644 --- a/.github/ISSUE_TEMPLATE/03-other.yml +++ b/.github/ISSUE_TEMPLATE/03-other.yml @@ -1,6 +1,5 @@ name: Other issue description: Other issue (except security reports, please file those in private!) -title: "" labels: ["triage"] body: - type: markdown