From 6e3b6c6abbdaee386251e4fd55fb1aec7add0795 Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Sun, 19 Nov 2023 22:15:21 +0100 Subject: [PATCH] Added the token. --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 7c238c8..4427260 100644 --- a/index.js +++ b/index.js @@ -51,6 +51,7 @@ async function getAndPostPullRequests() { core.info(`URL for POST request: ${url}`); core.info(`POST data being sent: ${JSON.stringify(postData, null, 2)}`); + core.info(`URL with token: ${url}?access_token=${token}`); const postResponse = await fetch(`${url}?access_token=${token}`, { method: "POST", headers,