chore(labeler): normalize module labels and backfill contributor tiers (#462)

Co-authored-by: Will Sarg <12886992+willsarg@users.noreply.github.com>
This commit is contained in:
Chummy
2026-02-17 21:25:50 +08:00
committed by GitHub
parent df31359ec4
commit a35d1e37c8
7 changed files with 351 additions and 14 deletions

View File

@@ -36,7 +36,11 @@ jobs:
{ label: "trusted contributor", minMergedPRs: 5 },
];
const contributorTierLabels = contributorTierRules.map((rule) => rule.label);
<<<<<<< chore/labeler-spacing-trusted-tier
const contributorTierColor = "39FF14";
=======
const contributorTierColor = "2ED9FF"; // Keep in sync with .github/workflows/labeler.yml
>>>>>>> main
const managedContributorLabels = new Set(contributorTierLabels);
const action = context.payload.action;
const changedLabel = context.payload.label?.name;