From 16ff6c80504f095da947eeea3e09468228db8748 Mon Sep 17 00:00:00 2001 From: Camelid Date: Thu, 29 Apr 2021 13:13:28 -0700 Subject: [PATCH] Fix labels for regression issue template Each label needs to be separated by a comma (see the ICE issue template for an example of correct usage). As a result of this problem, the `regression-untriaged` label has not been automatically added to issues opened with this template. See c127530be76bd8aebc7b61f3b4a54f1be577f74c for another example of this. --- .github/ISSUE_TEMPLATE/regression.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/regression.md b/.github/ISSUE_TEMPLATE/regression.md index ffab883987c..c0e90824a71 100644 --- a/.github/ISSUE_TEMPLATE/regression.md +++ b/.github/ISSUE_TEMPLATE/regression.md @@ -1,7 +1,7 @@ --- name: Regression about: Report something that unexpectedly changed between Rust versions. -labels: C-bug regression-untriaged +labels: C-bug, regression-untriaged ---