workflows/bot: set "merge-bot eligible" label

This makes it more visible which PRs are merge-bot eligible, by setting
a label respectively.
This commit is contained in:
Wolfgang Walther
2025-10-12 13:40:49 +02:00
parent ba3293a128
commit 00e7b934fb
2 changed files with 6 additions and 1 deletions

View File

@@ -251,6 +251,10 @@ async function handleMerge({
if (canMerge) break
}
// Returns a boolean, which indicates whether the PR is merge-bot eligible in principle.
// This is used to set the respective label in bot.js.
return result
}
module.exports = {