Title: "update/pre-commit-hooks" #4

Closed
Philipp wants to merge 36 commits from update/pre-commit-hooks into main
Showing only changes of commit 2a95b9f36c - Show all commits

View File

@ -52,7 +52,7 @@ async function getAndPostPullRequests() {
pulls,
(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.base.ref);
}