Skip to content

Commit 2d7c8cd

Browse files
author
meorphis
committed
Merge branch 'main' into internal
2 parents d84592a + 68b8589 commit 2d7c8cd

4 files changed

Lines changed: 38 additions & 0 deletions

File tree

dist/build.js

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/merge.js

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/preview.js

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/outcomes.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,17 @@ export function categorizeOutcome({
185185
: null,
186186
};
187187
}
188+
189+
if (baseConclusion && conclusions.fatal.includes(baseConclusion)) {
190+
return {
191+
isPending: false,
192+
conclusion: headConclusion,
193+
severity: null,
194+
description: `had a "${baseOutcome?.commit?.conclusion}" conclusion in the base build, which improved to "${headConclusion}"`,
195+
isRegression: false,
196+
};
197+
}
198+
188199
if (
189200
conclusions.diagnostic.includes(headConclusion) ||
190201
newDiagnostics.length > 0 ||

0 commit comments

Comments
 (0)