Merge pull request #1206 from yql70/main #490
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync-To-TGIT | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
push-to-mirror: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone | |
run: | | |
git init | |
git remote add origin https://github.com/${GITHUB_REPOSITORY}.git | |
git fetch --all | |
for branch in `git branch -a | grep remotes | grep -v HEAD`; do | |
git branch --track ${branch#remotes/origin/} $branch | |
done | |
env: | |
GITHUB_REPOSITORY: Tencent/CodeAnalysis | |
- name: Push to TGIT | |
run: | | |
remote_repo="https://${TGIT_USERNAME}:${TGIT_PASSWORD}@git.code.tencent.com/${TGIT_REPOSITORY}.git" | |
git remote add tgit "${remote_repo}" | |
git show-ref | |
git branch --verbose | |
git push --all --force tgit | |
git push --tags --force tgit | |
env: | |
TGIT_REPOSITORY: Tencent_Open_Source/CodeAnalysis | |
TGIT_USERNAME: ${{ secrets.USERNAME }} | |
TGIT_PASSWORD: ${{ secrets.PASSWORD }} | |
continue-on-error: true | |
- name: Push to CNB | |
run: | | |
remote_repo="https://${CNB_USERNAME}:${CNB_PASSWORD}@cnb.cool/${CNB_REPOSITORY}.git" | |
git remote add cnb "${remote_repo}" | |
git push --all --force cnb | |
git push --tags --force cnb | |
env: | |
CNB_REPOSITORY: tca/code-analysis | |
CNB_USERNAME: ${{ secrets.CNB_USERNAME }} | |
CNB_PASSWORD: ${{ secrets.CNB_PASSWORD }} | |