1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:17:35 +00:00

Meta: Use SerenityBot for IRC notifications

This avoids "useless" join/part notifications.
This commit is contained in:
Ben Wiederhake 2020-11-14 15:05:29 +01:00 committed by Andreas Kling
parent 80d1e12116
commit ef9ac8a8a2
2 changed files with 17 additions and 24 deletions

View file

@ -11,6 +11,8 @@ TEMPLATE_PUSH = '''\
TEMPLATE_PR = '''\
{title} ({actor} {action}: {status}) {link} https://github.com/SerenityOS/serenity/actions/runs/{run_id}\
'''
SERENITY_BOT = 'http://94.130.182.143:8080'
def compute_lines(wrapper):
actor, run_id, raw_status, event = wrapper
@ -77,15 +79,21 @@ def compute_lines(wrapper):
return False
def send_notification(line):
print('> ' + line)
try:
response = requests.post(SERENITY_BOT, data={'msg': line})
except BaseException as e:
print('Notification failed: {}: {}'.format(type(e), e))
else:
print('Notification result: HTTP {}'.format(response.status_code))
def run_on(json_string):
wrapper = json.loads(json_string)
line = compute_lines(wrapper)
has_output = bool(line)
print('::set-output name=has_output::{}'.format(has_output))
print('> ::set-output name=has_output::{}'.format(has_output))
if has_output:
print('::set-output name=the_line::{}'.format(line))
print('> ::set-output name=the_line::{}'.format(line))
if line:
send_notification(line)
def run():