Rebase fix (#1239)

* fixing rebase warning

Signed-off-by: Paige Patton <prubenda@redhat.com>

* workflow

Signed-off-by: Paige Patton <prubenda@redhat.com>

---------

Signed-off-by: Paige Patton <prubenda@redhat.com>
This commit is contained in:
Paige Patton
2026-04-21 14:03:42 -04:00
committed by GitHub
parent 7614ce9fd5
commit 7ba07f142f
+5 -1
View File
@@ -40,7 +40,11 @@ jobs:
await new Promise(r => setTimeout(r, delay));
}
}
core.warning(`PR #${prNumber}: could not determine mergeable status after retries`);
if (maxAttempts > 1) {
core.warning(`PR #${prNumber}: could not determine mergeable status after ${maxAttempts} attempts — skipping`);
} else {
core.info(`PR #${prNumber}: mergeable not yet computed by GitHub — skipping (will recheck on next PR event)`);
}
return { mergeable: null, author: null };
}