Remove description translations #1231
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
# https://github.com/marketplace/actions/git-repo-sync | |
name: Git Repo Sync | |
on: | |
- push | |
- delete | |
jobs: | |
sync-bitbucket: | |
if: github.repository_owner == 'Fabulously-Optimized' | |
runs-on: ubuntu-24.04 | |
name: Git Repo Sync - BitBucket | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: wangchucheng/[email protected] | |
with: | |
target-url: ${{ secrets.BITBUCKET_GIT }} | |
target-username: ${{ secrets.BITBUCKET_USERNAME }} | |
target-token: ${{ secrets.BITBUCKET_TOKEN }} |