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 52f1011 commit 928e999Copy full SHA for 928e999
.github/workflows/filterDuplicates.js
@@ -110,10 +110,10 @@ async function run() {
110
console.log('%s files changes', changes.size)
111
console.log('%s duplicates found', filteredDuplicates.length)
112
if (filteredDuplicates.length > 0) {
113
+ console.log(formatDuplicates(filteredDuplicates, commitHash, repoName))
114
console.log(
- 'NOTE: if these duplicates appear unrelated to the changes, please rebased with the newest version of the target branch.'
115
+ '*Hint: if these duplicates appear unrelated to the changes, please rebased with the newest version of the target branch.*'
116
)
- console.log(formatDuplicates(filteredDuplicates, commitHash, repoName))
117
process.exit(1)
118
}
119
0 commit comments