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 29cd80a commit 07a3e49Copy full SHA for 07a3e49
.github/workflows/scripts/create_address_commit_comments_issues
@@ -267,7 +267,11 @@ update_commit_map() {
267
if [ "$found" -eq 0 ]; then
268
commit_keys+=("$key")
269
commit_counts+=("1")
270
- commit_comments+=("- ${link}"$'\n\n'" > **Line ${line}**: ${formatted_body}"$'\n\n'" ${code_snippet}")
+ if [ "$line" = "null" ]; then
271
+ commit_comments+=("- ${link}"$'\n\n'" > ${formatted_body}"$'\n\n'" ${code_snippet}")
272
+ else
273
+ commit_comments+=("- ${link}"$'\n\n'" > **Line ${line}**: ${formatted_body}"$'\n\n'" ${code_snippet}")
274
+ fi
275
fi
276
}
277
0 commit comments