LibreTube/.github/checkrun.py

14 lines
273 B
Python
Raw Normal View History

2022-06-18 20:34:35 +05:30
from json import load
from os import system
f = open('commit.json')
data = load(f)
f.close()
message = data['commit']['message']
if "\n\n" in message:
if message.split("\n\n",1)[-1].split()[0] == "[SILENT]":
system('killall -9 python')