From 755cee7a7cb80f17d8a12adc559eab9a4fd6e585 Mon Sep 17 00:00:00 2001 From: Jeroen Ooms Date: Wed, 1 Nov 2023 23:25:16 +0100 Subject: [PATCH] Run action unconditional --- entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index a77b7ce..3212d82 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -3,5 +3,7 @@ set -e echo "Trying to set commit status for ${REPO}/commit/${SHA}" echo "Source status: ${SOURCE_STATUS}" echo "Docs status: ${DOCS_STATUS}" +if [ "${HAS_APP}" ]; then Rscript -e "commitstatus::gh_app_set_commit_status('${REPO}','${SHA}','${BUILDLOG}','${UNIVERSE}','${DEPLOYED_PACKAGES}', '${SOURCE_STATUS}', '${DOCS_STATUS}', '${OSTYPE}')" +fi echo "Action complete!"