From 184d57661777b7bd98eeccc6b655607d6ed90d45 Mon Sep 17 00:00:00 2001 From: Peter Evans <18365890+peter-evans@users.noreply.github.com> Date: Sat, 27 Jul 2024 21:02:41 +0000 Subject: [PATCH] fix filepath when using path input --- dist/index.js | 7 +++++-- src/create-pull-request.ts | 3 +-- src/utils.ts | 4 ++++ 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index 574e224..e3449cf 100644 --- a/dist/index.js +++ b/dist/index.js @@ -327,7 +327,6 @@ var __rest = (this && this.__rest) || function (s, e) { Object.defineProperty(exports, "__esModule", ({ value: true })); exports.createPullRequest = createPullRequest; const core = __importStar(__nccwpck_require__(2186)); -const fs = __importStar(__nccwpck_require__(7147)); const graphql_1 = __nccwpck_require__(3414); const create_or_update_branch_1 = __nccwpck_require__(8363); const github_helper_1 = __nccwpck_require__(446); @@ -537,7 +536,7 @@ function createPullRequest(inputs) { core.debug(`Reading contents of file: '${file}'`); fileChanges.additions.push({ path: file, - contents: fs.readFileSync(file).toString('base64') + contents: utils.readFileBase64([repoPath, file]) }); } for (const file of deletedFiles) { @@ -1550,6 +1549,7 @@ exports.randomString = randomString; exports.parseDisplayNameEmail = parseDisplayNameEmail; exports.fileExistsSync = fileExistsSync; exports.readFile = readFile; +exports.readFileBase64 = readFileBase64; exports.getErrorMessage = getErrorMessage; const core = __importStar(__nccwpck_require__(2186)); const fs = __importStar(__nccwpck_require__(7147)); @@ -1639,6 +1639,9 @@ function fileExistsSync(path) { function readFile(path) { return fs.readFileSync(path, 'utf-8'); } +function readFileBase64(pathParts) { + return fs.readFileSync(path.resolve(...pathParts)).toString('base64'); +} /* eslint-disable @typescript-eslint/no-explicit-any */ function hasErrorCode(error) { return typeof (error && error.code) === 'string'; diff --git a/src/create-pull-request.ts b/src/create-pull-request.ts index ffc125d..80c2f62 100644 --- a/src/create-pull-request.ts +++ b/src/create-pull-request.ts @@ -1,5 +1,4 @@ import * as core from '@actions/core' -import * as fs from 'fs' import {graphql} from '@octokit/graphql' import type { Repository, @@ -327,7 +326,7 @@ export async function createPullRequest(inputs: Inputs): Promise { core.debug(`Reading contents of file: '${file}'`) fileChanges.additions!.push({ path: file, - contents: fs.readFileSync(file).toString('base64') + contents: utils.readFileBase64([repoPath, file]) }) } diff --git a/src/utils.ts b/src/utils.ts index b501dd4..ebde59e 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -126,6 +126,10 @@ export function readFile(path: string): string { return fs.readFileSync(path, 'utf-8') } +export function readFileBase64(pathParts: string[]): string { + return fs.readFileSync(path.resolve(...pathParts)).toString('base64') +} + /* eslint-disable @typescript-eslint/no-explicit-any */ function hasErrorCode(error: any): error is {code: string} { return typeof (error && error.code) === 'string'