fix(ci): GitHub App active-PR-limit exemption regression (#75311)

Co-authored-by: openclaw-clawsweeper[bot] <280122609+openclaw-clawsweeper[bot]@users.noreply.github.com>
This commit is contained in:
clawsweeper[bot]
2026-04-30 17:10:20 -07:00
committed by GitHub
parent 1ad50a36ac
commit e47a7448e9
2 changed files with 38 additions and 2 deletions

View File

@@ -808,12 +808,12 @@ async function removeLabels(github, context, issueNumber, labels, labelSet) {
issue_number: issueNumber,
name: label,
});
labelSet.delete(label);
} catch (error) {
if (error?.status !== 404) {
throw error;
}
}
labelSet.delete(label);
}
}