fix(labels): unify contributor-tier color to blue across workflows
This commit is contained in:
parent
aa014ab85b
commit
de43884e0e
2 changed files with 2 additions and 2 deletions
2
.github/workflows/auto-response.yml
vendored
2
.github/workflows/auto-response.yml
vendored
|
|
@ -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,
|
||||||
|
|
|
||||||
2
.github/workflows/labeler.yml
vendored
2
.github/workflows/labeler.yml
vendored
|
|
@ -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",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue