Skip to content

Commit 34cb217

Browse files
committed
ci: fix update-deps workflow
Signed-off-by: CrazyMax <[email protected]>
1 parent 8d7f29f commit 34cb217

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/update-deps.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,11 +302,12 @@ jobs:
302302
}
303303
304304
core.info(`Resolved ${config.name} from ${config.sourceUrl}`);
305-
if (!changed) {
305+
if (changedFiles.length === 0) {
306306
core.info(`No workspace changes needed for ${config.name}`);
307+
} else {
308+
core.info(`New ${config.name} ${resolved.titleValue} found`);
307309
}
308310
309-
core.setOutput('changed', changed ? 'true' : 'false');
310311
core.setOutput('branch', config.branch);
311312
core.setOutput('title', `chore(deps): update ${config.name} to ${resolved.titleValue}`);
312313
core.setOutput('before', formatList(unique(currentValues)));

0 commit comments

Comments
 (0)