Skip to content

Commit 02a9163

Browse files
authored
fix: accurately define ncu-ci report condition (#697)
Problems are ignored if they occurred in less than two PRs. Thus, they are reported if they failed in two or more PRs.
1 parent ec6e14a commit 02a9163

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ci/failure_aggregator.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export class FailureAggregator {
7272
let output = 'Failures in ';
7373
output += `[${jobName}/${first.jobid}](${first.link}) to `;
7474
output += `[${jobName}/${last.jobid}](${last.link}) `;
75-
output += 'that failed more than 2 PRs\n';
75+
output += 'that failed 2 or more PRs\n';
7676
output += '(Generated with `ncu-ci ';
7777
output += `${process.argv.slice(2).join(' ')}\`)\n\n`;
7878

0 commit comments

Comments
 (0)