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
3 changes: 3 additions & 0 deletions src/DeploymentReport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ export function parseDeploymentReport(xml: string): DeploymentReport {
try {
parsed = parser.parse(xml);
} catch {
// Reporting is best-effort and must never fail a deployment: malformed or
// unexpected report XML yields an empty result so the summary simply omits
// the changes section instead of surfacing an error.
return { operations: [], alerts: [] };
}

Expand Down
Loading