From 5fbe51d71360dcf5411355d82f77a28a119861cd Mon Sep 17 00:00:00 2001 From: abdellahhanane Date: Wed, 11 Mar 2026 21:27:58 -0400 Subject: [PATCH] Add log for the workflow run url Signed-off-by: abdellahhanane --- .../src/actions/githubActionsDispatch.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/scaffolder-backend-module-github/src/actions/githubActionsDispatch.ts b/plugins/scaffolder-backend-module-github/src/actions/githubActionsDispatch.ts index c882869085..4cc10235a1 100644 --- a/plugins/scaffolder-backend-module-github/src/actions/githubActionsDispatch.ts +++ b/plugins/scaffolder-backend-module-github/src/actions/githubActionsDispatch.ts @@ -167,6 +167,8 @@ export function createGithubActionsDispatchAction(options: { ctx.output('workflowRunId', runDetails.workflowRunId); ctx.output('workflowRunUrl', runDetails.workflowRunUrl); ctx.output('workflowRunHtmlUrl', runDetails.workflowRunHtmlUrl); + + ctx.logger.info(`Workflow run url: ${runDetails.workflowRunHtmlUrl}`); } } catch (e) { assertError(e);