From ae50240a2d4b64fb15069f355368015d0553233a Mon Sep 17 00:00:00 2001 From: Zachary Blasczyk Date: Sat, 2 Nov 2024 19:23:39 -0500 Subject: [PATCH] fix --- github/get-job-inputs/index.js | 2 +- integrations/github-get-job-inputs/src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/github/get-job-inputs/index.js b/github/get-job-inputs/index.js index adf68eb80..79e5d460d 100644 --- a/github/get-job-inputs/index.js +++ b/github/get-job-inputs/index.js @@ -28156,7 +28156,7 @@ async function run() { }) .then(({ data }) => { if (data == undefined) { - core.error(`Invalid Job data ${data}`); + core.error(`Invalid Job data`); return; } const { variables, target, release, environment, runbook, deployment, approval, } = data; diff --git a/integrations/github-get-job-inputs/src/index.ts b/integrations/github-get-job-inputs/src/index.ts index 08c716200..7a7db72b8 100644 --- a/integrations/github-get-job-inputs/src/index.ts +++ b/integrations/github-get-job-inputs/src/index.ts @@ -44,7 +44,7 @@ async function run() { }) .then(({ data }) => { if (data == undefined) { - core.error(`Invalid Job data ${data}`); + core.error(`Invalid Job data`); return; }