Reworked the loop.
All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 36s

This commit is contained in:
Philipp Horstenkamp 2023-11-19 13:43:23 +01:00
parent d30884d3d8
commit 2a95b9f36c
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4

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);
}