workflows/labels: use Node 24

This commit is contained in:
Wolfgang Walther
2025-10-11 13:29:09 +02:00
parent f0c1e4b672
commit b98ea083be
2 changed files with 6 additions and 3 deletions

View File

@@ -147,9 +147,8 @@ module.exports = async ({ github, context, core, dry }) => {
).labels
Object.assign(prLabels, evalLabels, {
'12.approved-by: package-maintainer': Array.from(maintainers).some(
(m) => approvals.has(m),
),
'12.approved-by: package-maintainer':
maintainers.intersection(approvals).size > 0,
})
}