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 5525697 commit 1bb15d4Copy full SHA for 1bb15d4
.github/workflows/create-porting-issue.yml
@@ -53,7 +53,7 @@ jobs:
53
54
const closingIssues = result.repository.pullRequest.closingIssuesReferences.nodes;
55
56
- if (closingIssues.every(issue => issue.body?.includes("AUTO-GENERATED-ISSUE"))) {
+ if (closingIssues.length > 0 && closingIssues.every(issue => issue.body?.includes("AUTO-GENERATED-ISSUE"))) {
57
return;
58
}
59
0 commit comments