From 37c6374aa7638e900f2ccb3e81aa15156dd6553b Mon Sep 17 00:00:00 2001 From: Peter Evans <18365890+peter-evans@users.noreply.github.com> Date: Wed, 18 Sep 2024 15:57:56 +0000 Subject: [PATCH] update log messages --- dist/index.js | 3 ++- src/github-helper.ts | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 4284a52..5905299 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1372,6 +1372,7 @@ class GitHubHelper { const treeObjects = yield Promise.all(commit.changes.map((_a) => __awaiter(this, [_a], void 0, function* ({ path, mode, status, dstSha }) { if (mode === '160000') { // submodule + core.info(`Creating tree object for submodule commit at '${path}'`); return { path, mode, @@ -1385,13 +1386,13 @@ class GitHubHelper { try { const { data: blob } = yield blobCreationLimit(() => this.octokit.rest.git.createBlob(Object.assign(Object.assign({}, repository), { content: utils.readFileBase64([repoPath, path]), encoding: 'base64' }))); sha = blob.sha; - core.info(`Created blob for file '${path}'`); } catch (error) { core.error(`Error creating blob for file '${path}': ${utils.getErrorMessage(error)}`); throw error; } } + core.info(`Creating tree object for blob at '${path}' with status '${status}'`); return { path, mode, diff --git a/src/github-helper.ts b/src/github-helper.ts index b34df59..82a9296 100644 --- a/src/github-helper.ts +++ b/src/github-helper.ts @@ -258,6 +258,7 @@ export class GitHubHelper { commit.changes.map(async ({path, mode, status, dstSha}) => { if (mode === '160000') { // submodule + core.info(`Creating tree object for submodule commit at '${path}'`) return { path, mode, @@ -276,7 +277,6 @@ export class GitHubHelper { }) ) sha = blob.sha - core.info(`Created blob for file '${path}'`) } catch (error) { core.error( `Error creating blob for file '${path}': ${utils.getErrorMessage(error)}` @@ -284,6 +284,9 @@ export class GitHubHelper { throw error } } + core.info( + `Creating tree object for blob at '${path}' with status '${status}'` + ) return { path, mode,