coverallsapp/github-action

Coveralls not finding repository, response 422 when trying to upload reports

joaocasarin opened this issue · 3 comments

I have just configured this repo to use coveralls actions as a coverage badge, created the secret as in the image below:
image

And as you can see in here, I am using the correct secret.

However, everytime I run this job I get the response Bad response: 422 {"message":"Couldn't find a repository matching this job.","error":true}

I have no idea what to do. I already checked in the coveralls website and the repo is fine...

The same error happens if I try using v1.1.2:

image

This action doesn't use the coveralls secret, but rather literally this:

github-token: ${{ secrets.GITHUB_TOKEN }}

Took me a while too to figure it out. Just copy-paste this literally in your ci.yml.

See: lemurheavy/coveralls-public#1627

This action doesn't use the coveralls secret, but rather literally this:

github-token: ${{ secrets.GITHUB_TOKEN }}

Took me a while too to figure it out. Just copy-paste this literally in your ci.yml.

See: lemurheavy/coveralls-public#1627

WOW! that was exactly the issue, their docs is not that clear, but now I get it... Thanks for sharing both the info and another issue that was raised regarding this.

Thanks, my friend!