From f30dee2b88f005007ba413d1594e3f5cf9eee63d Mon Sep 17 00:00:00 2001 From: Leif Henriksen Date: Mon, 22 Jun 2026 14:15:04 +0200 Subject: [PATCH] CLDSRV-935: reindent review.yml to 2 spaces Standardize review.yml on Prettier's 2-space style across 9.2->9.4 so the Anthropic review action's "byte-identical to the default branch" check passes without a .prettierignore carve-out. Lands on 9.2 and waterfalls up so 9.2/9.3/9.4 converge on the same file. --- .github/workflows/review.yml | 44 ++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index 7659931083..41ee586759 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -4,28 +4,28 @@ run-name: "Code Review for #${{ github.event.pull_request.number || inputs.pr_nu # yamllint enable rule:line-length on: - pull_request: - types: [opened, synchronize, labeled, unlabeled] - pull_request_target: - types: [opened, synchronize] - workflow_dispatch: - inputs: - pr_number: - description: Pull Request number to review - required: true + pull_request: + types: [opened, synchronize, labeled, unlabeled] + pull_request_target: + types: [opened, synchronize] + workflow_dispatch: + inputs: + pr_number: + description: Pull Request number to review + required: true jobs: - review: - if: github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]' - uses: scality/workflows/.github/workflows/claude-code-review.yml@v2 - with: - allowed-tools: >- - ${{ github.event_name == 'workflow_dispatch' && '"Bash(gh api repos/*/contents)"' || '' }} - secrets: inherit + review: + if: github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]' + uses: scality/workflows/.github/workflows/claude-code-review.yml@v2 + with: + allowed-tools: >- + ${{ github.event_name == 'workflow_dispatch' && '"Bash(gh api repos/*/contents)"' || '' }} + secrets: inherit - review-dependency-bump: - if: github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]' - uses: scality/workflows/.github/workflows/claude-code-dependency-review.yml@v2 - with: - ACTIONS_APP_ID: ${{ vars.ACTIONS_APP_ID }} - secrets: inherit + review-dependency-bump: + if: github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]' + uses: scality/workflows/.github/workflows/claude-code-dependency-review.yml@v2 + with: + ACTIONS_APP_ID: ${{ vars.ACTIONS_APP_ID }} + secrets: inherit