From ac23cdaeb160417126240501759edb47eb41e2c0 Mon Sep 17 00:00:00 2001 From: ZhuJHua <1624109111@qq.com> Date: Mon, 27 Jan 2025 17:11:52 +0800 Subject: [PATCH] chore(*): adjust the output format of outdated dependencies in the Telegram bot workflow [skip ci] --- .github/workflows/telegram-bot.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/telegram-bot.yml b/.github/workflows/telegram-bot.yml index 7d1e9a0..6658465 100644 --- a/.github/workflows/telegram-bot.yml +++ b/.github/workflows/telegram-bot.yml @@ -42,13 +42,12 @@ jobs: with: to: ${{ secrets.TELEGRAM_TO }} token: ${{ secrets.TELEGRAM_TOKEN }} - format: html + format: markdown message: | - 🎉 A new release is live! 🎉 + 🎉 **A new release is live!** 🎉 - Release Name: ${{ env.RELEASE_NAME }} - Tag: ${{ env.RELEASE_TAG }} - Release Notes: + **Version:** ${{ env.RELEASE_TAG }} + **Release Notes:** ${{ env.RELEASE_NOTES }} - 🔗 View Release: ${{ env.RELEASE_URL }} \ No newline at end of file + 🔗 [View Release](${{ env.RELEASE_URL }}) \ No newline at end of file