Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/reusable-18-autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ jobs:
labels="$labels, \`${CLEAN_LABEL}\`"
fi
else
labels="\`autofix:clean\`"
labels="(none)"
fi
if [ "${REMAINING:-0}" -gt 0 ]; then
labels="$labels, \`autofix:debt\`"
Expand Down Expand Up @@ -879,9 +879,9 @@ jobs:
if (changed && (!sameRepo || authMode !== 'pat')) {
desired.add(patchLabel);
}
if (!changed) {
desired.add(cleanLabel);
}
// NOTE: We intentionally do NOT add cleanLabel when !changed
// The autofix:clean label is used as a trigger, not an outcome
// Adding it here caused a race condition with bootstrap PRs (see issue #217)
if ((process.env.MODE || '').toLowerCase() === 'clean') {
desired.add(cleanOnlyLabel);
if (cleanInputLabel) {
Expand Down
Loading