question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

HttpError: API rate limit exceeded for installation

See original GitHub issue

I’ve specified token by GITHUB_TOKEN, but I get the following error:

Unexpected error fetching GitHub release for tag refs/heads/v1.079-dev: HttpError: API rate limit exceeded for installation ID 5238618.

image

It reads the problem is during ‘fetching GitHub release’. Is the action utilizes token in the right way?

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
kenorbcommented, Jun 27, 2020

I had to fix the branch name extraction which was used for the tag_name to not put spaces, e.g.

      - name: Get the current branch name
        shell: bash
        run: echo "##[set-output name=branch;]${GITHUB_REF#refs/heads/}"
        id: myref

then use: tag_name: ${{ steps.myref.outputs.branch }}-dev.

So this is basically duplicate of #52, happening when the tag name is invalid. Then the following jobs are basically rejecting further GitHub calls (sometimes without seeing “GitHub release failed with status” errors, because it’s already invalid before the retrying loop even start).

0reactions
softpropscommented, Jun 26, 2020

Thanks for the extra info. That’s be my bet. Does that tag exist?

Read more comments on GitHub >

github_iconTop Results From Across the Web

GitHub Error: Rate Limit Exceeded - Coder Diaries
When GitHub throws "Rate Limit Exceeded" error, the cause is exceeding the number of requests allowed per hour. Find out how to solve...
Read more >
"API rate limit exceeded" when trying to install local R package ...
Error: HTTP error 403. API rate limit exceeded for [my IP]. (But here's the good news: Authenticated requests get a higher rate limit....
Read more >
HTTP error 403. API rate limit exceeded for 88.130.59.173.
Hi. I am having this problem trying to install Monocle3. How can I solve it. devtools::install_github( ...
Read more >
Azure DevOps triggers all the pipelines in a project for no reason
GitHub reported the error, 'API rate limit exceeded for installation ID X'", which makes total sense, because the Azure Pipelines GitHub App just...
Read more >
Resolve errors | Google Drive
Resolve a 403 error: User rate limit exceeded ... To fix this error, try any of the following: ... Note: Only request additional...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found