ci: switch coveralls to repo token auth - #430
Closed
BeiBaiNian wants to merge 1 commit into
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix the coveralls 422 error that makes all
testjobs of thebuildworkflow fail. After the repo moved fromcasbin/pycasbintoapache/casbin-pycasbin, the coveralls GitHub Actions integration (service_name=github) can no longer match CI jobs to the repository, so every coverage upload fails with422 Couldn't find a repository matching this job(tests themselves all pass).Switch to the officially recommended repo-token method:
coveralls --service-name=github-actionswithCOVERALLS_REPO_TOKENcoveralls --finishstep uses the same token, replacingGITHUB_TOKENChanges
run: coveralls --service-name=github-actions; envGITHUB_TOKENreplaced withCOVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}coveralls --finish): envGITHUB_TOKENreplaced withCOVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}Verification
https://coveralls.io/api/v1/jobswith the repo token returned200 {"message":"Job ##1.1","url":"https://coveralls.io/jobs/185704267"}— coveralls accepted the upload.Note for maintainers
This PR requires the repository secret
COVERALLS_REPO_TOKEN, otherwise CI cannot pass.