From f65cacfea4e0d33c0a1c7264bc8e065141bf6a13 Mon Sep 17 00:00:00 2001 From: Christian Gunderman Date: Thu, 14 May 2026 09:13:50 -0700 Subject: [PATCH] fix(bot): exempt bots from PR rate limiter --- .github/workflows/pr-rate-limiter.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr-rate-limiter.yaml b/.github/workflows/pr-rate-limiter.yaml index c703279532..c3005bec50 100644 --- a/.github/workflows/pr-rate-limiter.yaml +++ b/.github/workflows/pr-rate-limiter.yaml @@ -18,6 +18,7 @@ jobs: pull-requests: 'write' steps: - name: 'Limit open pull requests per user' + if: "github.actor != 'gemini-cli[bot]' && github.actor != 'gemini-cli-robot'" uses: 'Homebrew/actions/limit-pull-requests@9ceb7934560eb61d131dde205a6c2d77b2e1529d' # master with: except-author-associations: 'MEMBER,OWNER,COLLABORATOR'