Skip to content

Commit 58b09b9

Browse files
committed
chore: Change text of welcome text
1 parent 3b1d590 commit 58b09b9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@ jobs:
5959
username: ${{ secrets.SSH_USERNAME }}
6060
key: ${{ secrets.SSH_KEY }}
6161
script: |
62-
sed -i 's/BOT_VERSION="[^\"]*"/BOT_VERSION="v0.4.0"/g' .env
62+
sed -i 's/BOT_VERSION="[^\"]*"/BOT_VERSION="${{ github.ref_name }}"/g' .env
6363
docker compose up -d

internal/bot/handler/start.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,7 @@ func (c *start) Handle(ctx telebot.Context) error {
2525
if strings.HasPrefix(data, "setcard") {
2626
return NewSetCard(c.db).Handle(ctx)
2727
}
28-
return ctx.Reply("به بات دونگ خوش آمدید!")
28+
return ctx.Reply(`به بات دونگ خوش آمدید!
29+
30+
برای راهنمایی کار با بات، از دستور /help استفاده کنید.`)
2931
}

0 commit comments

Comments
 (0)