From 210c95c8cc48ee73ad0c1700c825abab01dbec7f Mon Sep 17 00:00:00 2001 From: ItsIgnacioPortal <46269721+ItsIgnacioPortal@users.noreply.github.com> Date: Thu, 22 Jan 2026 04:06:23 -0300 Subject: [PATCH] fix(docs): Removed redundant title prefix from templates The title prefixes weren't necessary since new issues are automatically asigned labels anyway by the templates. --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- .github/ISSUE_TEMPLATE/question.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 046ff3534..d186b208d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,7 +1,7 @@ --- name: 'Bug report' about: 'Submit a bug report to improve' -title: '[Bug report]: ' +title: '' labels: 'bug' assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 846aff455..55f7cca5a 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,7 +1,7 @@ --- name: 'Wordlist/Feature request' about: 'Suggest a wordlist/feature to be added' -title: '[Feature request]: ' +title: '' labels: 'enhancement' # Alt: proposal assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index ef04fde1c..28cdfafe9 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -1,7 +1,7 @@ --- name: 'Question' about: 'Anything that does not fit in the other categories' -title: '[Question]: ' +title: '' labels: 'question' assignees: '' ---