From 418530e26ce9c541f88f2c161f446e27c8d05710 Mon Sep 17 00:00:00 2001
From: Tatyana Kostromskaya <takost@github.com>
Date: Thu, 5 Oct 2023 13:16:46 +0200
Subject: [PATCH] .

---
 dist/index.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dist/index.js b/dist/index.js
index 700e107..4ab45c5 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -1809,7 +1809,8 @@ function getInputs() {
         result.persistCredentials =
             (core.getInput('persist-credentials') || 'false').toUpperCase() === 'TRUE';
         // Workflow organization ID
-        result.workflowOrganizationId = yield workflowContextHelper.getOrganizationId();
+        result.workflowOrganizationId =
+            yield workflowContextHelper.getOrganizationId();
         // Set safe.directory in git global config.
         result.setSafeDirectory =
             (core.getInput('set-safe-directory') || 'true').toUpperCase() === 'TRUE';
@@ -2520,8 +2521,7 @@ function getOrganizationId() {
             return id;
         }
         catch (err) {
-            core.debug(`Unable to load organization ID from GITHUB_EVENT_PATH: ${err
-                .message || err}`);
+            core.debug(`Unable to load organization ID from GITHUB_EVENT_PATH: ${err.message || err}`);
         }
     });
 }