PR feedback

This commit is contained in:
Frostebite
2025-12-05 23:36:23 +00:00
parent bea818fb9c
commit 2c3cb006c0
2 changed files with 7 additions and 5 deletions
@@ -46,10 +46,12 @@ export class CustomWorkflow {
} catch (error: any) {
const allowFailure = step.allowFailure === true;
const stepName = step.name || step.image || 'unknown';
if (allowFailure) {
CloudRunnerLogger.logWarning(
`Hook container "${stepName}" failed but allowFailure is true. Continuing build. Error: ${error?.message || error}`,
`Hook container "${stepName}" failed but allowFailure is true. Continuing build. Error: ${
error?.message || error
}`,
);
// Continue to next step
} else {