Skip to content

Commit da7bf92

Browse files
committed
Fix here-document bash warning
1 parent 986a839 commit da7bf92

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/review-requested-slack-notification.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
run: |
2828
str=$(cat << 'GHEOF'
2929
${{format('👉 {0} requested your review in: {1}', github.event.sender.login, github.event.pull_request.title)}}
30-
GHEOF)
30+
GHEOF
31+
)
3132
printf 'message=%s\n' "$(echo $str| jq -R .)" >> $GITHUB_OUTPUT
3233
3334
- name: Notify of review request

.github/workflows/review-submitted-slack-notification.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
run: |
3030
str=$(cat << 'GHEOF'
3131
${{format('👈 {0} reviewed your pull request: {1}', github.event.review.user.login, github.event.pull_request.title)}}
32-
GHEOF)
32+
GHEOF
33+
)
3334
printf 'message=%s\n' "$(echo $str| jq -R .)" >> $GITHUB_OUTPUT
3435
3536
- name: Notify of review

0 commit comments

Comments
 (0)