From 1cac6171e7eb488bbb51f29b8074d62d4930b76b Mon Sep 17 00:00:00 2001 From: Koji Wakayama Date: Fri, 27 Mar 2026 11:12:49 +0100 Subject: [PATCH] chore: allow aikido-autofix bot to bypass CLA check Add aikido-autofix[bot] to the bot allowlist in both the job-level condition and the contributor loop, matching the existing pattern for dependabot, github-actions, and renovate bots. --- .github/workflows/cla.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 331f299f2d..00f53b08b8 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -14,7 +14,8 @@ jobs: if: >- github.event.pull_request.user.login != 'dependabot[bot]' && github.event.pull_request.user.login != 'github-actions[bot]' && - github.event.pull_request.user.login != 'renovate[bot]' + github.event.pull_request.user.login != 'renovate[bot]' && + github.event.pull_request.user.login != 'aikido-autofix[bot]' steps: - name: Checkout base branch uses: actions/checkout@v4 @@ -44,7 +45,7 @@ jobs: missing=() for login in "${contributors[@]}"; do case "${login}" in - dependabot\[bot\]|github-actions\[bot\]|renovate\[bot\]) + dependabot\[bot\]|github-actions\[bot\]|renovate\[bot\]|aikido-autofix\[bot\]) continue ;; esac