We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1a5c43 commit 3d9d468Copy full SHA for 3d9d468
.github/workflows/auto-merge-backports.yml
@@ -51,6 +51,12 @@ jobs:
51
const result = await github.graphql(query);
52
const prs = result.search.nodes;
53
54
+ if (prs.length === 0) {
55
+ console.log('No backport PRs found matching criteria');
56
+ } else {
57
+ console.log(`Found ${prs.length} backport PR(s) to evaluate`);
58
+ }
59
+
60
for (const pr of prs) {
61
const createdAt = new Date(pr.createdAt);
62
const isOldEnough = createdAt <= iso24HoursAgo;
0 commit comments