Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion send-slack-notification/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ runs:
[ -z "${TEST_RESULT:-}" ] && echo "The test-result input must be provided" && exit 1
[ -z "${TEST_HEALTH:-}" ] && echo "The test-health input must be provided" && exit 1

echo "FAILED_TESTS=${FAILED_TESTS:-No failed tests}" | tee -a "$GITHUB_OUTPUT"
echo -e "FAILED_TESTS<<EOF\n${FAILED_TESTS:-No failed tests}\nEOF" | tee -a "$GITHUB_OUTPUT"
echo "DASHBOARD_URL=$DASHBOARD_URL" | tee -a "$GITHUB_OUTPUT"
echo "TEST_RESULT=$TEST_RESULT" | tee -a "$GITHUB_OUTPUT"
echo "TEST_HEALTH=$TEST_HEALTH" | tee -a "$GITHUB_OUTPUT"
Expand Down
Loading