We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've recently migrated from travis to github actions, and while most of the stuff works, the code coverage for PRs coming from forks doesn't.
This is because the CC_TEST_REPORTER_ID is not set then by github, see the Github documentation: https://docs.github.com/en/actions/reference/encrypted-secrets#using-encrypted-secrets-in-a-workflow
CC_TEST_REPORTER_ID
With the exception of GITHUB_TOKEN, secrets are not passed to the runner when a workflow is triggered from a forked repository.
and with no CC_TEST_REPORTER_ID the submission fails: https://github.com/tlsfuzzer/tlslite-ng/runs/1785404408?check_suite_focus=true#step:32:9
At the same time, coverage reporting to coveralls.io does, as it uses the GITHUB_TOKEN to authenticate to the coveralls.io API.
GITHUB_TOKEN
The text was updated successfully, but these errors were encountered:
f-moya
No branches or pull requests
I've recently migrated from travis to github actions, and while most of the stuff works, the code coverage for PRs coming from forks doesn't.
This is because the
CC_TEST_REPORTER_ID
is not set then by github, see the Github documentation:https://docs.github.com/en/actions/reference/encrypted-secrets#using-encrypted-secrets-in-a-workflow
and with no
CC_TEST_REPORTER_ID
the submission fails:https://github.com/tlsfuzzer/tlslite-ng/runs/1785404408?check_suite_focus=true#step:32:9
At the same time, coverage reporting to coveralls.io does, as it uses the
GITHUB_TOKEN
to authenticate to the coveralls.io API.The text was updated successfully, but these errors were encountered: