mirror of
https://github.com/progval/irctest.git
synced 2025-04-04 22:39:50 +00:00
deploy_to_netlify.py: Fix crash on the first commit of a PR (#160)
This commit is contained in:
2
.github/deploy_to_netlify.py
vendored
2
.github/deploy_to_netlify.py
vendored
@ -32,7 +32,7 @@ context_suffix = ""
|
||||
command = ["netlify", "deploy", "--dir=dashboard/"]
|
||||
if is_pull_request:
|
||||
pr_number = github_event["number"]
|
||||
sha = github_event["after"]
|
||||
sha = github_event.get("after") or github_event["pull_request"]["head"]["sha"]
|
||||
# Aliases can't exceed 37 chars
|
||||
command.extend(["--alias", f"pr-{pr_number}-{sha[0:10]}"])
|
||||
context_suffix = " (pull_request)"
|
||||
|
Reference in New Issue
Block a user