We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9607dcd commit 6aba693Copy full SHA for 6aba693
scripts/flakiness.mjs
@@ -118,7 +118,7 @@ if (Object.keys(flaky).length === 0) {
118
} else {
119
const workflowSuccessRate = +((1 - flakeCount / totalCount) * 100).toFixed(1)
120
const pipelineSuccessRate = +((workflowSuccessRate / 100) ** workflows.length * 100).toFixed(1)
121
- const pipelineBadge = pipelineSuccessRate >= 80 ? '🟢' : pipelineSuccessRate >= 70 ? '🟡' : '🔴'
+ const pipelineBadge = pipelineSuccessRate >= 85 ? '🟢' : pipelineSuccessRate >= 75 ? '🟡' : '🔴'
122
123
console.log(`*Flaky ${logString}`)
124
for (const [workflow, jobs] of Object.entries(flaky).sort()) {
0 commit comments