From 1f17a7aab772e1f0ee9a870cc32f63bf18755946 Mon Sep 17 00:00:00 2001 From: TheFrenchGhosty Date: Sat, 11 Jul 2026 08:58:57 +0200 Subject: [PATCH] Fix assignees field type in issue templates Use an empty array instead of an empty string for the assignees field, as required by the GitHub Issue Forms schema. --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/enhancement.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 281386591..367ab6ee4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -2,7 +2,7 @@ name: Bug report description: Create a bug report to help us improve Invidious title: "[Bug] " labels: ["bug"] -assignees: "" +assignees: [] body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/enhancement.yml b/.github/ISSUE_TEMPLATE/enhancement.yml index df56625ae..d55faacf7 100644 --- a/.github/ISSUE_TEMPLATE/enhancement.yml +++ b/.github/ISSUE_TEMPLATE/enhancement.yml @@ -2,7 +2,7 @@ name: Enhancement description: Suggest an enhancement for an existing feature title: "[Enhancement] " labels: ["enhancement"] -assignees: "" +assignees: [] body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 8cf42a6d5..510642313 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -2,7 +2,7 @@ name: Feature request description: Suggest an idea for this project title: "[Feature request] " labels: ["feature-request"] -assignees: "" +assignees: [] body: - type: markdown attributes: