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 2f54879 commit ddad9e7Copy full SHA for ddad9e7
.github/workflows/scripts/create_address_commit_comments_issues
@@ -211,8 +211,7 @@ issue_exists_for_commit() {
211
local total_count
212
total_count=$(echo "$response" | jq -r '.total_count')
213
214
- if [ "$total_count" -gt 0 ]; then
215
- # An issue already exists:
+ if [ "$total_count" = "null" ] || [ "$total_count" -gt 0 ]; then
216
return 0
217
else
218
return 1
0 commit comments