From 9eae794fc8f761986b488d7b03ccded8c82e34e0 Mon Sep 17 00:00:00 2001 From: eddinos Date: Sun, 16 Aug 2026 01:00:01 +0200 Subject: [PATCH] chore: fix issue templates for labels and MSRV Drop the non-existent triage label from bug/feature/docs templates, bump the bug-report Rust placeholder to the project MSRV (1.85), and add ISSUE_TEMPLATE/config.yml with a Discussions contact link. --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- .github/ISSUE_TEMPLATE/config.yml | 5 +++++ .github/ISSUE_TEMPLATE/documentation_issue.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index f12d6772..123a0d82 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -2,7 +2,7 @@ name: Bug Report description: Report a bug or unexpected behavior title: "[BUG] " -labels: ["bug", "triage"] +labels: ["bug"] assignees: [] body: - type: markdown @@ -24,7 +24,7 @@ body: attributes: label: Rust Version description: What version of Rust are you using? - placeholder: e.g., 1.75.0 + placeholder: e.g., 1.85.0 validations: required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..cfd2001a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: RustAPI Discussions + url: https://github.com/Tuntii/RustAPI/discussions + about: Questions, ideas, and design talk that are not bug reports. diff --git a/.github/ISSUE_TEMPLATE/documentation_issue.yml b/.github/ISSUE_TEMPLATE/documentation_issue.yml index cc271598..bb4a73b7 100644 --- a/.github/ISSUE_TEMPLATE/documentation_issue.yml +++ b/.github/ISSUE_TEMPLATE/documentation_issue.yml @@ -2,7 +2,7 @@ name: Documentation Issue description: Report issues with documentation title: "[DOCS] " -labels: ["documentation", "triage"] +labels: ["documentation"] assignees: [] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index e51ca935..a830d96f 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -2,7 +2,7 @@ name: Feature Request description: Suggest a new feature or enhancement title: "[FEATURE] " -labels: ["enhancement", "triage"] +labels: ["enhancement"] assignees: [] body: - type: markdown