Skip to content

Commit

Permalink
fix(ci): cast chat id and thread id into int (#1078)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonKhew96 authored Oct 24, 2023
1 parent 1b67c1b commit d68fa5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/ksubot.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@


BOT_TOKEN = os.environ.get("BOT_TOKEN")
CHAT_ID = os.environ.get("CHAT_ID")
MESSAGE_THREAD_ID = os.environ.get("MESSAGE_THREAD_ID")
CHAT_ID = int(os.environ.get("CHAT_ID"))
MESSAGE_THREAD_ID = int(os.environ.get("MESSAGE_THREAD_ID"))
COMMIT_URL = os.environ.get("COMMIT_URL")
COMMIT_MESSAGE = os.environ.get("COMMIT_MESSAGE")
RUN_URL = os.environ.get("RUN_URL")
Expand Down

0 comments on commit d68fa5a

Please sign in to comment.