From e0080e5f75b3f58309222591c529e4dbf1dcc895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 20 Jul 2020 16:47:48 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20Watch=20Previews=20action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/actions/watch-previews/app/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/actions/watch-previews/app/main.py b/.github/actions/watch-previews/app/main.py index fca8a7800..51318e712 100644 --- a/.github/actions/watch-previews/app/main.py +++ b/.github/actions/watch-previews/app/main.py @@ -67,6 +67,7 @@ if __name__ == "__main__": notified = True logging.info(f"Docs preview was notified: {notified}") if not notified: + artifact_name = f"docs-zip-{commit}" response = httpx.get( f"{github_api}/repos/{settings.github_repository}/actions/artifacts", headers=headers, @@ -75,7 +76,7 @@ if __name__ == "__main__": artifacts_response = ArtifactResponse.parse_obj(data) use_artifact: Optional[Artifact] = None for artifact in artifacts_response.artifacts: - if artifact.name == settings.input_name: + if artifact.name == artifact_name: use_artifact = artifact break if use_artifact: @@ -85,7 +86,7 @@ if __name__ == "__main__": headers=headers, json={ "ref": "master", - "inputs": {"pr": f"{pr.number}", "name": f"docs-zip-{commit}"}, + "inputs": {"pr": f"{pr.number}", "name": artifact_name}, }, ) logging.info(