semantic-release-action icon indicating copy to clipboard operation
semantic-release-action copied to clipboard

AgregateError: HttpError: You have exceeded a secondary rate limit.

Open trombini77 opened this issue 2 years ago • 0 comments

Describe the bug It is not common, but in the last 12 months I guess this is the second time that I got the following error: MicrosoftTeams-image

Workflow the steps running it in the job are:

  release:
    name: CI Release
    if: github.ref == 'refs/heads/staging' || github.ref == 'refs/heads/master'
    needs: build
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2

      - name: Semantic Release
        uses: cycjimmy/semantic-release-action@v2
        id: semantic
        with:
          semantic_version: 17
          branches: |
            [
              'master',
              {
                name: 'staging',
                prerelease: true
              }
            ]
          extra_plugins: |
            @semantic-release/git
            @semantic-release/changelog
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expected behavior I expected not have this kind of error and it works fine.

Additional context

trombini77 avatar Dec 03 '21 16:12 trombini77