I sucked and do not know how to break line "text" correctly, here is the snipped of workflow file:
raw: >-
{
"@type": "MessageCard",
"@context": "http://schema.org/extensions",
"title": "Smoke test run on ${{ env.AOS_TEST_ENV }}",
"text": "Status: **${{ env.RESULTS }}**\n\n---\n\n[GitHub link](${{ env.GITHUB_URL }})\n\n---\n\n[TestRail link](${{ env.TR_RUN_URL }})\n\n---\n\n**Project-version: ${{ env.PROJECT }}**",
"themeColor": "00FF00"
}
the linter (yamllint) reporting an error: 156:121 error line too long (195 > 120 characters) (line-length)
i have tried break "line" into two: "line1"+ "line2", "line1 \ line2"