Skip to content

Commit

Permalink
правки
Browse files Browse the repository at this point in the history
  • Loading branch information
HamletSargsyan committed Jul 10, 2024
1 parent 36ade63 commit 0db3243
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
release_name: v${{ github.ref }}
body_path: "release_body.md"
draft: false
prerelease: false
Expand Down
2 changes: 0 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.6.2] - 2024-07-10

### Удалено

- Уведомления о новых постах на канале
Expand Down
4 changes: 2 additions & 2 deletions tools/send_release_notification.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def send_release_notification():

for line in body.splitlines():
if line.startswith("###"):
new_line = f"**{line}**"
new_line = f"*{line}*"
body = body.replace(line, new_line)

message = (
Expand All @@ -42,7 +42,7 @@ def send_release_notification():

markup = quick_markup({"Релиз": {"url": release.get("html_url")}})

bot = TeleBot(bot_token, parse_mode="MarkdownV2", disable_web_page_preview=True)
bot = TeleBot(bot_token, parse_mode="markdown", disable_web_page_preview=True)
bot.send_message(chat_id, message, reply_markup=markup)


Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.2
3.6.1

0 comments on commit 0db3243

Please sign in to comment.