File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -98,9 +98,13 @@ await Promise.all(workflows.map(w => checkWorkflowRuns(w)))
98
98
99
99
// TODO: Report this somewhere useful instead.
100
100
if ( Object . keys ( flaky ) . length === 0 ) {
101
- console . log ( `*No flaky jobs with at least ${ OCCURRENCES } seen in the last ${ DAYS > 1 ? `${ DAYS } days` : 'day' } *` )
101
+ console . log (
102
+ `*No flaky jobs with at least ${ OCCURRENCES } occurrences seen in the last ${ DAYS > 1 ? `${ DAYS } days` : 'day' } *`
103
+ )
102
104
} else {
103
- console . log ( `*Flaky jobs with at least ${ OCCURRENCES } seen in the last ${ DAYS > 1 ? `${ DAYS } days` : 'day' } *` )
105
+ console . log (
106
+ `*Flaky jobs with at least ${ OCCURRENCES } occurrences seen in the last ${ DAYS > 1 ? `${ DAYS } days` : 'day' } *`
107
+ )
104
108
for ( const [ workflow , jobs ] of Object . entries ( flaky ) . sort ( ) ) {
105
109
if ( ! reported . has ( workflow ) ) continue
106
110
console . log ( `* ${ workflow } ` )
You can’t perform that action at this time.
0 commit comments