We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8d7f29f + 34cb217 commit b35c65cCopy full SHA for b35c65c
1 file changed
.github/workflows/update-deps.yml
@@ -302,11 +302,12 @@ jobs:
302
}
303
304
core.info(`Resolved ${config.name} from ${config.sourceUrl}`);
305
- if (!changed) {
+ if (changedFiles.length === 0) {
306
core.info(`No workspace changes needed for ${config.name}`);
307
+ } else {
308
+ core.info(`New ${config.name} ${resolved.titleValue} found`);
309
310
- core.setOutput('changed', changed ? 'true' : 'false');
311
core.setOutput('branch', config.branch);
312
core.setOutput('title', `chore(deps): update ${config.name} to ${resolved.titleValue}`);
313
core.setOutput('before', formatList(unique(currentValues)));
0 commit comments