From 0aa76567a6fffdd1e10cce5b2ac5b42d78354b00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Gonz=C3=A1lez?= <7822554+AlexTMjugador@users.noreply.github.com> Date: Sun, 1 Jun 2025 16:51:00 +0200 Subject: [PATCH] docs(issue template): do not skip closed issues in link to existing issues (#3728) When an issue has been already handled by our part, and thus gets closed, but affects many users and the fix takes a while to be rolled out, it usually happens that those who notice the matter later on don't notice previous reports and create duplicate issues. Let's try to improve a little bit on that by not filtering out closed issues in the links for checking whether the same issue was already reported before. This should make it more obvious to users who follow the link whether an issue for their problem already exists. --- .github/ISSUE_TEMPLATE/1-app-bug.yml | 2 +- .github/ISSUE_TEMPLATE/2-web-bug.yml | 2 +- .github/ISSUE_TEMPLATE/3-api-bug.yml | 2 +- .github/ISSUE_TEMPLATE/4-feature-request.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1-app-bug.yml b/.github/ISSUE_TEMPLATE/1-app-bug.yml index 201ab4c26..3b0a6791a 100644 --- a/.github/ISSUE_TEMPLATE/1-app-bug.yml +++ b/.github/ISSUE_TEMPLATE/1-app-bug.yml @@ -6,7 +6,7 @@ body: attributes: label: Please confirm the following. options: - - label: I checked the [existing issues](https://github.com/modrinth/code/issues) for duplicate problems + - label: I checked the [existing issues](https://github.com/modrinth/code/issues?q=is%3Aissue) for duplicate problems required: true - label: I have tried resolving the issue using the [support portal](https://support.modrinth.com) required: true diff --git a/.github/ISSUE_TEMPLATE/2-web-bug.yml b/.github/ISSUE_TEMPLATE/2-web-bug.yml index dcef0bb7e..118f21338 100644 --- a/.github/ISSUE_TEMPLATE/2-web-bug.yml +++ b/.github/ISSUE_TEMPLATE/2-web-bug.yml @@ -6,7 +6,7 @@ body: attributes: label: Please confirm the following. options: - - label: I checked the [existing issues](https://github.com/modrinth/code/issues) for duplicate problems + - label: I checked the [existing issues](https://github.com/modrinth/code/issues?q=is%3Aissue) for duplicate problems required: true - label: I have tried resolving the issue using the [support portal](https://support.modrinth.com) required: true diff --git a/.github/ISSUE_TEMPLATE/3-api-bug.yml b/.github/ISSUE_TEMPLATE/3-api-bug.yml index a17ed85ef..19f7f764e 100644 --- a/.github/ISSUE_TEMPLATE/3-api-bug.yml +++ b/.github/ISSUE_TEMPLATE/3-api-bug.yml @@ -6,7 +6,7 @@ body: attributes: label: Please confirm the following. options: - - label: I checked the [existing issues](https://github.com/modrinth/code/issues) for duplicate problems + - label: I checked the [existing issues](https://github.com/modrinth/code/issues?q=is%3Aissue) for duplicate problems required: true - label: I have tried resolving the issue using the [support portal](https://support.modrinth.com) required: true diff --git a/.github/ISSUE_TEMPLATE/4-feature-request.yml b/.github/ISSUE_TEMPLATE/4-feature-request.yml index 03450b468..945d68410 100644 --- a/.github/ISSUE_TEMPLATE/4-feature-request.yml +++ b/.github/ISSUE_TEMPLATE/4-feature-request.yml @@ -7,7 +7,7 @@ body: attributes: label: Please confirm the following. options: - - label: I checked the [existing issues](https://github.com/modrinth/code/issues) for duplicate feature requests + - label: I checked the [existing issues](https://github.com/modrinth/code/issues?q=is%3Aissue) for duplicate feature requests required: true - label: I have checked that this feature request is not on our [roadmap](https://roadmap.modrinth.com) required: true