LibreTube/.github/checkrun.py
rozari0 950937f6e9 Remove unused workflow and related files.
We don't need these anymore.
2022-12-03 02:37:15 +06:00

14 lines
331 B
Python

from json import load
from os import system
with open("commit.json", "r") as f:
data = load(f)["commit"]["message"]
if "\n\n" in data:
if data.split("\n\n", 1)[-1].split()[0] == "[SILENT]":
system("killall -9 python")
else:
print("Silence not found")
else:
print("Empty Description")