From 34cb2176ef570bd082d7ea0c0e0c185bd83aef95 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Thu, 16 Apr 2026 08:44:38 +0200 Subject: [PATCH] ci: fix update-deps workflow Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- .github/workflows/update-deps.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-deps.yml b/.github/workflows/update-deps.yml index 7b933ec..f26e206 100644 --- a/.github/workflows/update-deps.yml +++ b/.github/workflows/update-deps.yml @@ -302,11 +302,12 @@ jobs: } core.info(`Resolved ${config.name} from ${config.sourceUrl}`); - if (!changed) { + if (changedFiles.length === 0) { core.info(`No workspace changes needed for ${config.name}`); + } else { + core.info(`New ${config.name} ${resolved.titleValue} found`); } - core.setOutput('changed', changed ? 'true' : 'false'); core.setOutput('branch', config.branch); core.setOutput('title', `chore(deps): update ${config.name} to ${resolved.titleValue}`); core.setOutput('before', formatList(unique(currentValues)));