From 11c05beecea6e06d35379834855598e013accdb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 20 Jul 2020 17:13:27 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=8A=20Add=20more=20logging=20to=20Watc?= =?UTF-8?q?h=20Preview=20when=20artifact=20is=20not=20found?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/actions/watch-previews/app/main.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/actions/watch-previews/app/main.py b/.github/actions/watch-previews/app/main.py index e47f18275..decfb339e 100644 --- a/.github/actions/watch-previews/app/main.py +++ b/.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(