Skip to content

Commit a3ff81d

Browse files
Jonathan D.A. Jewellclaude
andcommitted
fix: add per-forge org override to mirror workflow
Bitbucket uses workspace 'hyperpolymath-dev' instead of 'hyperpolymath'. Add BITBUCKET_ORG variable fallback before the shared MIRROR_ORG. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 64b24fd commit a3ff81d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/mirror.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Mirror to Bitbucket
4444
run: |
4545
ssh-keyscan -t ed25519 bitbucket.org >> ~/.ssh/known_hosts
46-
git remote add bitbucket git@bitbucket.org:${{ vars.MIRROR_ORG || github.repository_owner }}/${{ github.event.repository.name }}.git || true
46+
git remote add bitbucket git@bitbucket.org:${{ vars.BITBUCKET_ORG || vars.MIRROR_ORG || github.repository_owner }}/${{ github.event.repository.name }}.git || true
4747
git push --force bitbucket main
4848
4949
mirror-codeberg:

0 commit comments

Comments
 (0)