From 845641c48073d71aae912130c49c7ae6b34666a0 Mon Sep 17 00:00:00 2001 From: LanceDB Robot Date: Tue, 21 Oct 2025 02:38:14 +0800 Subject: [PATCH] ci: use robot token instead of github's own token (#2732) --- .github/workflows/codex-update-lance-dependency.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codex-update-lance-dependency.yml b/.github/workflows/codex-update-lance-dependency.yml index 63b382fe..bf102e29 100644 --- a/.github/workflows/codex-update-lance-dependency.yml +++ b/.github/workflows/codex-update-lance-dependency.yml @@ -61,7 +61,7 @@ jobs: - name: Configure git user run: | git config user.name "lancedb automation" - git config user.email "automation@lancedb.com" + git config user.email "robot@lancedb.com" - name: Configure Codex authentication env: @@ -77,8 +77,8 @@ jobs: - name: Run Codex to update Lance dependency env: TAG: ${{ inputs.tag }} - GITHUB_TOKEN: ${{ github.token }} - GH_TOKEN: ${{ github.token }} + GITHUB_TOKEN: ${{ secrets.ROBOT_TOKEN }} + GH_TOKEN: ${{ secrets.ROBOT_TOKEN }} run: | set -euo pipefail VERSION="${TAG#refs/tags/}"