commit 1642cdc088aef9fd9acb1e523f224835590c0710
parent 0a78d8d6452403c323927f484c527830838c2e3e
Author: Suzanne Soy <jsmaniac.github@suzanne.soy>
Date: Wed, 28 Jul 2021 16:10:17 +0100
Revert the status check stuff, it is not needed, one just needs to search the name of the workflow job (build in this case) to add it as a branch check, it isn't listed but can be found by searching
Diffstat:
1 file changed, 0 insertions(+), 17 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
@@ -92,20 +92,3 @@ jobs:
run: if $COV; then raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true; fi
# TODO: add an option to cover to run the "outer" module too, not just the submodules.
# TODO: deploy the coverage info.
- status-check:
- runs-on: ubuntu-latest
- needs: build
- steps:
- - uses: actions/checkout@v2
- - name: Create status check
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: |
- set -x
- BUILD_COMMIT=$(git rev-parse HEAD)
- curl \
- -X POST \
- -H "Authorization: Bearer $GITHUB_TOKEN" \
- -H "Accept: application/vnd.github.v3+json" \
- https://api.github.com/repos/${{ github.repository }}/check-runs \
- -d '{"name":"build", "head_sha": "'"$BUILD_COMMIT"'", "status": "completed", "conclusion": "success" }'