Nick Merwin

Results 24 comments of Nick Merwin

Hi @askarby and @jakeols could you try logging out and into Coveralls? The Github or Travis token may have rolled.

Hi @freshvolk could you please add some tests for this? Thank you!

@GabeStah I ran into same issue just now and found that you can supply the `raw: true` parameter and it will skip adding the `Jsonize` Faraday middleware: https://github.com/piotrmurach/github/blob/7381b431af71ae553bdbb604221127d2274fa53b/lib/github_api/middleware.rb#L24 E.g.: ```ruby...

This is due to the RDS certificate change. From jawsdb.com: You'll need to swap out this file in your repo `support/mysql-certs/rds-combined-ca-bundle.pem` with this new one from AWS: https://s3.amazonaws.com/rds-downloads/rds-combined-ca-bundle.pem and redeploy.

Pull Request opened: https://github.com/xyu/heroku-wp/pull/171

Hi @ioquatix, nice coincidence, we just released a new version of our GitHub Action that uses `GITHUB_RUN_ID` as the build number: https://github.com/coverallsapp/github-action/blob/master/src/run.ts#L47 There's also improved parallel build support as shown...

Re-reading this thread now. You could omit the `GITHUB_TOKEN` by using an env configuration like this: ```yaml env: COVERALLS_SERVICE_NAME: github-actions COVERALLS_SERVICE_NUMBER: ${{github.run_id}} COVERALLS_REPO_TOKEN: ${{secrets.coveralls_repo_token}} ``` Using "github-actions" as the service...

@ioquatix for public GH Actions, either the repo token or GitHub token is needed for Coveralls to verify the authenticity of incoming coverage data.

@ioquatix we’re able to [use the Coveralls repo owner’s GitHub OAuth token to authenticate on the Travis API](https://docs.travis-ci.com/api/#with-a-github-token), so we can get the repo name using the `service_job_id` specified in...

@ioquatix yes, it's technically possible, but we felt that using `GITHUB_TOKEN` was a better long term solution here since it's a real shared-secret, and since Coveralls can use it for...