New translations en_us.json (Chinese Simplified) #1233
Workflow file for this run
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: Git Repo Sync | |
on: | |
- push | |
- delete | |
jobs: | |
sync-bitbucket: | |
if: github.repository_owner == 'Fabulously-Optimized' | |
runs-on: ubuntu-22.04 | |
name: Git Repo Sync - BitBucket | |
steps: | |
- name: Checkout the Repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Synchronize code to other Git platforms | |
uses: wangchucheng/[email protected] | |
with: | |
target-url: ${{ secrets.BITBUCKET_GIT }} | |
target-username: ${{ secrets.BITBUCKET_USERNAME }} | |
target-token: ${{ secrets.BITBUCKET_TOKEN }} |