This is an automated email from the ASF dual-hosted git repository.

shuke987 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new fd6608b2fad [fix](ci) Update Codex review auth pool (#66318)
fd6608b2fad is described below

commit fd6608b2fad01dca4303c2c29a3d2c25abf4dda7
Author: Ze_ <[email protected]>
AuthorDate: Fri Jul 31 14:44:29 2026 +0800

    [fix](ci) Update Codex review auth pool (#66318)
    
    ### What problem does this PR solve?
    
    Issue Number: None
    
    Related PR: None
    
    Problem Summary: The AI Review workflow currently selects auth.json.2,
    auth.json.3, or auth.json.4. Add auth.json.1 to the account pool and
    remove auth.json.3 and auth.json.4 so only the requested active accounts
    are eligible.
    
    ### Release note
    
    None
    
    ### Check List (For Author)
    
    - Test: YAML parsing, bash syntax, and runtime account-pool selection
    validation
        - YAML parse and bash -n for all 20 workflow run blocks
    - Executed the auth selection fragment with a macOS-compatible shuf test
    stub; result was auth.json.1
    - Behavior changed: Yes (the AI Review credential pool now selects
    auth.json.1 or auth.json.2)
    - Does this need documentation: No
---
 .github/workflows/code-review-runner.yml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/.github/workflows/code-review-runner.yml 
b/.github/workflows/code-review-runner.yml
index 1d60b1fd503..f7ccd883644 100644
--- a/.github/workflows/code-review-runner.yml
+++ b/.github/workflows/code-review-runner.yml
@@ -218,9 +218,8 @@ jobs:
           printf 'CODEX_HOME=%s\n' "$RUNNER_TEMP/codex-home" >> "$GITHUB_ENV"
 
           auth_object="$(printf '%s\n' \
+            'oss://doris-community-ci/codex/auth.json.1' \
             'oss://doris-community-ci/codex/auth.json.2' \
-            'oss://doris-community-ci/codex/auth.json.3' \
-            'oss://doris-community-ci/codex/auth.json.4' \
             | shuf -n 1)"
           printf 'CODEX_AUTH_OSS_OBJECT=%s\n' "$auth_object" >> "$GITHUB_ENV"
           echo "Selected Codex auth object: ${auth_object##*/}"


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to