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
803 changed files with 54108 additions and 0 deletions
Showing only changes of commit 2a95b9f36c - Show all commits

View File

@ -52,7 +52,7 @@ async function getAndPostPullRequests() {
pulls, pulls,
(pr) => pr.head.ref === branch && pr.base.ref === base_branch, (pr) => pr.head.ref === branch && pr.base.ref === base_branch,
); );
for (let pr in pulls) { for (let pr of pulls) {
core.info(pr.head.ref); core.info(pr.head.ref);
core.info(pr.base.ref); core.info(pr.base.ref);
} }