Browse Source
🔊 Add more logging to Watch Preview when artifact is not found
pull/1746/head
Sebastián Ramírez
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
8 additions and
2 deletions
-
.github/actions/watch-previews/app/main.py
|
|
@ -79,14 +79,20 @@ if __name__ == "__main__": |
|
|
|
if artifact.name == artifact_name: |
|
|
|
use_artifact = artifact |
|
|
|
break |
|
|
|
if use_artifact: |
|
|
|
if not use_artifact: |
|
|
|
logging.info(f"Artifact not available") |
|
|
|
else: |
|
|
|
logging.info(f"Existing artifact: {use_artifact.name}") |
|
|
|
response = httpx.post( |
|
|
|
"https://api.github.com/repos/tiangolo/fastapi/actions/workflows/preview-docs.yml/dispatches", |
|
|
|
headers=headers, |
|
|
|
json={ |
|
|
|
"ref": "master", |
|
|
|
"inputs": {"pr": f"{pr.number}", "name": artifact_name, "commit": commit}, |
|
|
|
"inputs": { |
|
|
|
"pr": f"{pr.number}", |
|
|
|
"name": artifact_name, |
|
|
|
"commit": commit, |
|
|
|
}, |
|
|
|
}, |
|
|
|
) |
|
|
|
logging.info( |
|
|
|