diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c39d1f815..2189b5444 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -598,7 +598,7 @@ jobs: uses: actions/github-script@v6 with: script: | - await github.rest.checks.update({ + github.rest.checks.update({ owner: context.repo.owner, repo: context.repo.repo, check_run_id: check_python, @@ -609,13 +609,3 @@ jobs: summary: 'The black formatting check failed but it is marked as neutral.', } }); - - - # github.rest.checks.create({ - # owner: context.repo.owner, - # repo: context.repo.repo, - # name: 'Failed black formatting check', - # head_sha: context.sha, - # status: 'completed', - # conclusion: 'neutral' - # })