From e0935267a5b8ec078e2034d9728fa905e064cabf Mon Sep 17 00:00:00 2001 From: Niklas Dewally Date: Tue, 4 Feb 2025 09:12:15 +0000 Subject: [PATCH] Fix typo in code-coverage-deploy --- .github/workflows/code-coverage-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code-coverage-deploy.yml b/.github/workflows/code-coverage-deploy.yml index c8b84030eb..e946ecb379 100644 --- a/.github/workflows/code-coverage-deploy.yml +++ b/.github/workflows/code-coverage-deploy.yml @@ -224,12 +224,12 @@ jobs: run: | # url of run, to use for summary # the api call returns the url of the job which does not show the summary, so we change it to the run url instead, which does. - MAIN_URL=$(gh api -X GET -F 'filter=latest' -F 'status=completed' -F 'check_name=Documentation Coverage' \ + MAIN_URL=$(gh api -X GET -F 'filter=latest' -F 'status=completed' -F 'check_name=Documentation' \ -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" \ /repos/conjure-cp/conjure-oxide/commits/main/check-runs |\ jq '.check_runs[0] | .html_url | split("/")[0:-2] | join("/")') - PR_URL=$(gh api -X GET -F 'filter=latest' -F 'status=completed' -F 'check_name=Documentation Coverage' \ + PR_URL=$(gh api -X GET -F 'filter=latest' -F 'status=completed' -F 'check_name=Documentation' \ -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" \ /repos/conjure-cp/conjure-oxide/commits/${{steps.sha.outputs.result}}/check-runs |\ jq '.check_runs[0] | .html_url | split("/")[0:-2] | join("/")')