From 2725132cd346852cc752c1619637c864deda8440 Mon Sep 17 00:00:00 2001 From: Dennis Kugelmann Date: Mon, 10 Jun 2024 17:17:27 +0000 Subject: [PATCH] fix: correct log output when creating releases (#933) The log is a bit misleading, I changed it to represent what it actually represents. Signed-off-by: Dennis Kugelmann Co-authored-by: Jeff Ching --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 3e82f8f4..d5a77a60 100644 --- a/src/index.ts +++ b/src/index.ts @@ -121,7 +121,7 @@ export async function main() { if (!inputs.skipGitHubRelease) { const manifest = await loadOrBuildManifest(github, inputs); - core.debug('Creating pull requests'); + core.debug('Creating releases'); outputReleases(await manifest.createReleases()); }