Skip to content

Commit

Permalink
Update readyForStable.js (#4379)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm1957 authored Dec 17, 2024
1 parent 981e41a commit f933bb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/readyForStable.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ async function checkIssues(latest, stable, stats, result) {
console.log(` ${issue.title} detected - issue still valid`);
const labels = await getGithub(`https://api.github.com/repos/${owner}/ioBroker.${adapter}/issues/${issueId}/labels`);
for (let i = 0; i < labels.length; i++) {
if (labels[i].name === 'stale') {
if (labels[i].name.toLowerCase() === 'stale') {
console.log(` issue marked as stale, will try to refresh`);
const comment = `This issue seems to be still valid. So it should not be flagged stale.\n` +
`Please consider processing the issue\n`+
Expand Down

0 comments on commit f933bb6

Please sign in to comment.