Skip to content

Commit

Permalink
fix(ci): don't exit on null (#997)
Browse files Browse the repository at this point in the history
  • Loading branch information
cwrau authored Jun 19, 2024
1 parent 1b77a34 commit f74ba39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/create-values-diff.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ if [[ "$dryRun" == false ]]; then
-H 'Accept: application/vnd.github+json' \
-H "Authorization: token ${GITHUB_TOKEN}" \
"${GITHUB_API_REPO_URL}/issues/${issue}/comments" |
jq -er 'map(select(.body | contains(":robot: I have diffed this *beep* *boop*")))[0].id'
jq -r 'map(select(.body | contains(":robot: I have diffed this *beep* *boop*")))[0].id'
)"
if [[ "$existingCommentId" != null ]]; then
updateComment "$issue" "$existingCommentId" "$body"
Expand Down

0 comments on commit f74ba39

Please sign in to comment.