Reworked the debugging a bit.
All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 38s
All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 38s
This commit is contained in:
parent
2a95b9f36c
commit
e05f7d8886
6
index.js
6
index.js
@ -53,8 +53,14 @@ async function getAndPostPullRequests() {
|
|||||||
(pr) => pr.head.ref === branch && pr.base.ref === base_branch,
|
(pr) => pr.head.ref === branch && pr.base.ref === base_branch,
|
||||||
);
|
);
|
||||||
for (let pr of pulls) {
|
for (let pr of pulls) {
|
||||||
|
core.info(branch);
|
||||||
|
core.info(base_branch);
|
||||||
|
|
||||||
core.info(pr.head.ref);
|
core.info(pr.head.ref);
|
||||||
core.info(pr.base.ref);
|
core.info(pr.base.ref);
|
||||||
|
core.info(pr.base.ref === base_branch);
|
||||||
|
core.info(pr.head.ref === branch);
|
||||||
|
core.info(pr.head.ref === branch && pr.base.ref === base_branch);
|
||||||
}
|
}
|
||||||
if (targetPRFound) {
|
if (targetPRFound) {
|
||||||
core.info(
|
core.info(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user