There was an error while loading. Please reload this page.
2 parents 0d5d107 + 0d0e755 commit c751adbCopy full SHA for c751adb
1 file changed
src/DeploymentReport.ts
@@ -54,6 +54,9 @@ export function parseDeploymentReport(xml: string): DeploymentReport {
54
try {
55
parsed = parser.parse(xml);
56
} catch {
57
+ // Reporting is best-effort and must never fail a deployment: malformed or
58
+ // unexpected report XML yields an empty result so the summary simply omits
59
+ // the changes section instead of surfacing an error.
60
return { operations: [], alerts: [] };
61
}
62
0 commit comments