mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
Fix comment
This commit is contained in:
6
.github/deploy_to_netlify.py
vendored
6
.github/deploy_to_netlify.py
vendored
@ -16,7 +16,8 @@ if event_name.startswith("pull_request"):
|
||||
elif event_name.startswith("push"):
|
||||
is_push = True
|
||||
elif event_name.startswith("schedule"):
|
||||
# Don't publish; not all controllers run on scheduled events
|
||||
# Don't publish; scheduled workflows run against the latest commit of every
|
||||
# implementation, so they are likely to have failed tests for the wrong reasons
|
||||
sys.exit(0)
|
||||
else:
|
||||
print("Unexpected event name:", event_name)
|
||||
@ -53,6 +54,7 @@ elif is_push:
|
||||
pass
|
||||
|
||||
|
||||
print("Running", command)
|
||||
proc = subprocess.run(command, capture_output=True)
|
||||
|
||||
output = proc.stdout.decode()
|
||||
@ -63,6 +65,8 @@ assert m
|
||||
netlify_site_url = m.group(0)
|
||||
target_url = f"{netlify_site_url}/index.xhtml"
|
||||
|
||||
print("Published to", netlify_site_url)
|
||||
|
||||
|
||||
def send_status() -> None:
|
||||
statuses_url = github_event["repository"]["statuses_url"].format(sha=sha)
|
||||
|
Reference in New Issue
Block a user