mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
Fix crash on scheduled workflows
This commit is contained in:
23
.github/deploy_to_netlify.py
vendored
23
.github/deploy_to_netlify.py
vendored
@ -2,23 +2,40 @@
|
|||||||
|
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
import pprint
|
||||||
import re
|
import re
|
||||||
import subprocess
|
import subprocess
|
||||||
|
import sys
|
||||||
import urllib.request
|
import urllib.request
|
||||||
|
|
||||||
|
event_name = os.environ["GITHUB_EVENT_NAME"]
|
||||||
|
|
||||||
|
is_pull_request = is_push = False
|
||||||
|
if event_name.startswith("pull_request"):
|
||||||
|
is_pull_request = True
|
||||||
|
elif event_name.startswith("push"):
|
||||||
|
is_push = True
|
||||||
|
elif event_name.startswith("schedule"):
|
||||||
|
# Don't publish; not all controllers run on scheduled events
|
||||||
|
sys.exit(0)
|
||||||
|
else:
|
||||||
|
print("Unexpected event name:", event_name)
|
||||||
|
|
||||||
with open(os.environ["GITHUB_EVENT_PATH"]) as fd:
|
with open(os.environ["GITHUB_EVENT_PATH"]) as fd:
|
||||||
github_event = json.load(fd)
|
github_event = json.load(fd)
|
||||||
|
|
||||||
|
pprint.pprint(github_event)
|
||||||
|
|
||||||
context_suffix = ""
|
context_suffix = ""
|
||||||
|
|
||||||
command = ["netlify", "deploy", "--dir=dashboard/"]
|
command = ["netlify", "deploy", "--dir=dashboard/"]
|
||||||
if "pull_request" in github_event and "number" in github_event:
|
if is_pull_request:
|
||||||
pr_number = github_event["number"]
|
pr_number = github_event["number"]
|
||||||
sha = github_event["after"]
|
sha = github_event["after"]
|
||||||
# Aliases can't exceed 37 chars
|
# Aliases can't exceed 37 chars
|
||||||
command.extend(["--alias", f"pr-{pr_number}-{sha[0:10]}"])
|
command.extend(["--alias", f"pr-{pr_number}-{sha[0:10]}"])
|
||||||
context_suffix = " (pull_request)"
|
context_suffix = " (pull_request)"
|
||||||
else:
|
elif is_push:
|
||||||
ref = github_event["ref"]
|
ref = github_event["ref"]
|
||||||
m = re.match("refs/heads/(.*)", ref)
|
m = re.match("refs/heads/(.*)", ref)
|
||||||
if m:
|
if m:
|
||||||
@ -95,5 +112,5 @@ def send_pr_comment() -> None:
|
|||||||
assert response.status == 201, response.read()
|
assert response.status == 201, response.read()
|
||||||
|
|
||||||
|
|
||||||
if "pull_request" in github_event:
|
if is_pull_request:
|
||||||
send_pr_comment()
|
send_pr_comment()
|
||||||
|
Reference in New Issue
Block a user