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("/")')