We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 921cdd9 commit 590e2c9Copy full SHA for 590e2c9
1 file changed
src/automations/new-issue.py
@@ -8,11 +8,12 @@
8
ISSUE_AUTHOR = os.getenv("ISSUE_AUTHOR")
9
ISSUE_BODY = os.getenv("ISSUE_BODY")
10
11
-# CHAT_ID = "-1002120660974"
12
-# THREAD_ID = 1888
+CHAT_ID = "-1002120660974"
+THREAD_ID = 1888
13
14
-CHAT_ID = "-1002354441960"
15
-THREAD_ID = 2
+# Grupo de teste
+# CHAT_ID = "-1002354441960"
16
+# THREAD_ID = 2
17
18
# url = f"https://api.telegram.org/bot{TOKEN}/getUpdates"
19
@@ -29,7 +30,7 @@ def main():
29
30
"message_thread_id": THREAD_ID,
31
"text": message,
32
"parse_mode": "Markdown",
- "disable_notification": True
33
+ # "disable_notification": True
34
}
35
url = f"https://api.telegram.org/bot{TOKEN}/sendMessage"
36
response = httpx.get(url, params=params)
0 commit comments