We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b1d590 commit 58b09b9Copy full SHA for 58b09b9
.github/workflows/main.yml
@@ -59,5 +59,5 @@ jobs:
59
username: ${{ secrets.SSH_USERNAME }}
60
key: ${{ secrets.SSH_KEY }}
61
script: |
62
- sed -i 's/BOT_VERSION="[^\"]*"/BOT_VERSION="v0.4.0"/g' .env
+ sed -i 's/BOT_VERSION="[^\"]*"/BOT_VERSION="${{ github.ref_name }}"/g' .env
63
docker compose up -d
internal/bot/handler/start.go
@@ -25,5 +25,7 @@ func (c *start) Handle(ctx telebot.Context) error {
25
if strings.HasPrefix(data, "setcard") {
26
return NewSetCard(c.db).Handle(ctx)
27
}
28
- return ctx.Reply("به بات دونگ خوش آمدید!")
+ return ctx.Reply(`به بات دونگ خوش آمدید!
29
+
30
+برای راهنمایی کار با بات، از دستور /help استفاده کنید.`)
31
0 commit comments