mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-02-14 19:29:57 +01:00
Вероятно последний тест
- wl-add: тесттттттттттттттт
This commit is contained in:
@@ -47,13 +47,13 @@ def format_body(body: str) -> str:
|
||||
cl_type = match.group(1)
|
||||
message = match.group(2).capitalize().strip()
|
||||
|
||||
if cl_type == "add":
|
||||
if cl_type == "wl-add":
|
||||
result += '🆕'
|
||||
elif cl_type == "tweak":
|
||||
elif cl_type == "wl-tweak":
|
||||
result += '🛠️'
|
||||
elif cl_type == "fix":
|
||||
elif cl_type == "wl-fix":
|
||||
result += '🐛'
|
||||
elif cl_type == "remove":
|
||||
elif cl_type == "wl-remove":
|
||||
result += '❌'
|
||||
elif cl_type == "debug":
|
||||
result += "pup_debug_string"
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
import os
|
||||
import json
|
||||
import notify_discord
|
||||
import requests
|
||||
|
||||
COMMITS = json.loads(os.environ["COMMITS"])
|
||||
PR_NOTIFY_WEBHOOK = os.environ["PR_NOTIFY_WEBHOOK"]
|
||||
@@ -11,10 +10,6 @@ DEVELOPER_GITHUB_TOKEN = os.environ["DEVELOPER_GITHUB_TOKEN"]
|
||||
|
||||
# божи упаси(дебаг строка)
|
||||
def main():
|
||||
headers = {
|
||||
'Authorization': f'token {DEVELOPER_GITHUB_TOKEN}'
|
||||
}
|
||||
|
||||
content = ""
|
||||
|
||||
content_dict: dict[str, list[str]] = {
|
||||
|
||||
Reference in New Issue
Block a user