From 20c860f5c7b11217a22f2fb08cbde2a6e4d5aba3 Mon Sep 17 00:00:00 2001 From: Desi McAdam Date: Tue, 25 Feb 2025 07:17:56 -0700 Subject: [PATCH] Address feedback --- .github/scripts/check-template-and-add-labels.ts | 2 ++ .github/scripts/shared/label.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/scripts/check-template-and-add-labels.ts b/.github/scripts/check-template-and-add-labels.ts index 07e532e62e90..eb2e5578e057 100644 --- a/.github/scripts/check-template-and-add-labels.ts +++ b/.github/scripts/check-template-and-add-labels.ts @@ -140,6 +140,8 @@ async function main(): Promise { // Add regression label to the bug report issue addRegressionLabelToIssue(octokit, labelable); + + // Add needs triage label to the bug report issue addNeedsTriageLabelToIssue(octokit, labelable); } else { const errorMessage = diff --git a/.github/scripts/shared/label.ts b/.github/scripts/shared/label.ts index 137675d2df91..e13ab2824fac 100644 --- a/.github/scripts/shared/label.ts +++ b/.github/scripts/shared/label.ts @@ -29,7 +29,7 @@ export const externalContributorLabel: Label = { export const needsTriageLabel: Label = { name: 'needs-triage', - color: '#FA8072', + color: '#68AEE6', description: 'Issue needs to be triaged', };