From 0a8322f2dbd1b4b5c764111678723e5c3b66f10f Mon Sep 17 00:00:00 2001 From: Wei Ji <23487320+weiji14@users.noreply.github.com> Date: Thu, 2 Oct 2025 16:12:24 +1300 Subject: [PATCH] CI: Set persist-credentials: true in format-command.yml Needed to fix `fatal: could not read Username for 'https://github.com': No such device or address`. --- .github/workflows/format-command.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/format-command.yml b/.github/workflows/format-command.yml index 121be2cb329..d00b88b084f 100644 --- a/.github/workflows/format-command.yml +++ b/.github/workflows/format-command.yml @@ -29,7 +29,7 @@ jobs: token: ${{ steps.generate-token.outputs.token }} repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }} ref: ${{ github.event.client_payload.pull_request.head.ref }} - persist-credentials: false + persist-credentials: true # Setup Python environment - uses: actions/setup-python@v6.0.0