From 2fa3a563543068abd94aefcd6c7bb5a47a1160c2 Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Sun, 19 Nov 2023 04:13:34 +0100 Subject: [PATCH] Fixed a typo. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index c3a3b24..6b5a373 100644 --- a/index.js +++ b/index.js @@ -5,7 +5,7 @@ async function getAndPostPullRequests() { core.info("Starting the action..."); // Retrieve inputs and token - const baseUrl = core.getInput("base_url") || "https://api.github.com"; + const baseUrl = core.getInput("base_url") || "https://git.horstenkamp.eu"; core.info(`Base URL: ${baseUrl}`); const owner = core.getInput("owner") || process.env.GITHUB_REPOSITORY_OWNER;