Created a first draft of this action. #14

Merged
Philipp merged 68 commits from draft into main 2023-11-19 23:21:49 +01:00
Showing only changes of commit 637c6bc426 - Show all commits

View File

@ -54,10 +54,6 @@ async function getAndPostPullRequests() {
body: JSON.stringify(postData),
});
const postResponseText = await postResponse.text();
core.info(`POST request status: ${postResponse.status}`);
core.info(`POST response body: ${postResponseText}`);
if (!postResponse.ok) {
throw new Error(
`HTTP error! status on creating a new PR: ${postResponse.status}`,