From 7a9c40021263f6cea6dc7ab9540502eabd7a8b58 Mon Sep 17 00:00:00 2001 From: Ivan Litteri <67517699+ilitteri@users.noreply.github.com> Date: Fri, 29 Nov 2024 09:52:06 -0300 Subject: [PATCH] fix(l1, l2, levm): slack message publishing (#1352) The slack message payload was missing some `"` in the text and it was being sent as: image --- .github/scripts/publish_loc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/publish_loc.sh b/.github/scripts/publish_loc.sh index 3e57cfd6c..0b8f29344 100644 --- a/.github/scripts/publish_loc.sh +++ b/.github/scripts/publish_loc.sh @@ -17,7 +17,7 @@ $(jq -n --arg text "$(cat loc_report_slack.txt)" '{ "type": "section", "text": { "type": "mrkdwn", - "text": $text + "text": "$text" } } ]