fix(labels): unify contributor-tier color to blue across workflows

This commit is contained in:
Chummy 2026-02-17 15:04:27 +08:00
parent aa014ab85b
commit de43884e0e
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ jobs:
{ label: "experienced contributor", minMergedPRs: 10 }, { label: "experienced contributor", minMergedPRs: 10 },
]; ];
const contributorTierLabels = contributorTierRules.map((rule) => rule.label); const contributorTierLabels = contributorTierRules.map((rule) => rule.label);
const contributorTierColor = "39FF14"; const contributorTierColor = "2ED9FF"; // Keep in sync with .github/workflows/labeler.yml
const managedContributorLabels = new Set([ const managedContributorLabels = new Set([
legacyTrustedContributorLabel, legacyTrustedContributorLabel,
...contributorTierLabels, ...contributorTierLabels,

View file

@ -57,7 +57,7 @@ jobs:
{ label: "experienced contributor", minMergedPRs: 10 }, { label: "experienced contributor", minMergedPRs: 10 },
]; ];
const contributorTierLabels = contributorTierRules.map((rule) => rule.label); const contributorTierLabels = contributorTierRules.map((rule) => rule.label);
const contributorTierColor = "2ED9FF"; const contributorTierColor = "2ED9FF"; // Keep in sync with .github/workflows/auto-response.yml
const managedPathLabels = [ const managedPathLabels = [
"docs", "docs",