HttpError: API rate limit exceeded for installation
See original GitHub issueI’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.
It reads the problem is during ‘fetching GitHub release’. Is the action utilizes token in the right way?
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (2 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I had to fix the branch name extraction which was used for the
tag_name
to not put spaces, e.g.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).
Thanks for the extra info. That’s be my bet. Does that tag exist?