From 748ecd2ee52a7335f6b669dddf6f1d1f9cb2342b Mon Sep 17 00:00:00 2001 From: Simon KP Date: Mon, 16 Mar 2026 11:20:42 +1100 Subject: [PATCH] fix: set git identity in sync-cli-docs workflow The KeeperHub checkout has no git config, causing commit to fail with "Author identity unknown". --- .github/workflows/sync-cli-docs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sync-cli-docs.yml b/.github/workflows/sync-cli-docs.yml index 71744c0..5f1e955 100644 --- a/.github/workflows/sync-cli-docs.yml +++ b/.github/workflows/sync-cli-docs.yml @@ -99,6 +99,8 @@ jobs: RELEASE_TAG: ${{ github.event.release.tag_name || 'manual' }} run: | cd keeperhub + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" # Sanitize tag for branch name SAFE_TAG=$(echo "$RELEASE_TAG" | sed 's/[^a-zA-Z0-9.-]/-/g')