From 9c3ae750da26b079fdcfa9d13605bb4461973723 Mon Sep 17 00:00:00 2001 From: Avery Pennarun Date: Wed, 13 Oct 2021 00:52:47 +0900 Subject: [PATCH] Bug template: remove "[Bug]: " prefix for the common case. Also shorten "[FR]:" to "FR:" to save precious subject line space. I don't mind a prefix to distinguish feature requests, but the majority of cases are bugs. Let's preserve as many chars as possible for the specific topic when looking at subject lines in gmail. (Now, if only it wouldn't include [tailscale/tailscale] on every message...) Signed-off-by: Avery Pennarun --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 626a34f0c..430fefd37 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,6 @@ name: Bug report description: File a bug report -title: "[Bug]: " +title: "" labels: [needs-triage, bug] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index f7e1709da..2fca5e7e1 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,6 +1,6 @@ name: Feature request description: Propose a new feature -title: "[FR]: " +title: "FR: " labels: [needs-triage, fr] body: - type: markdown