Skip to content

Commit

Permalink
ci: please append new line
Browse files Browse the repository at this point in the history
  • Loading branch information
KisaragiEffective committed May 30, 2024
1 parent 4a9c2cf commit 0e222c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/validate-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ jobs:
# > This form implies --exit-code
GIT_TRACE=1 git diff --no-index "$OLD.old.txt" "$NEW.new.txt" >> "${DIFF_TO_BE_REPORTED}.diff" || true
COMMENT_BUFFER="$(mktemp)"
printf "I'm sorry, but this config should be migrated. Please apply following patch file to proceed:" >> "$COMMENT_BUFFER"
printf '```diff' >> "$COMMENT_BUFFER"
echo "I'm sorry, but this config should be migrated. Please apply following patch file to proceed:" >> "$COMMENT_BUFFER"
echo '```diff' >> "$COMMENT_BUFFER"
cat "${DIFF_TO_BE_REPORTED}.diff" >> "$COMMENT_BUFFER"
printf '```' >> "$COMMENT_BUFFER"
echo '```' >> "$COMMENT_BUFFER"
gh pr comment -F "$COMMENT_BUFFER" "${URL}"

0 comments on commit 0e222c4

Please sign in to comment.