Merge branch 'main' into pojav #761
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-22.04 | |
name: Git Repo Sync - BitBucket | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: wangchucheng/[email protected] | |
with: | |
target-url: ${{ secrets.BITBUCKET_GIT }} | |
target-username: ${{ secrets.BITBUCKET_USERNAME }} | |
target-token: ${{ secrets.BITBUCKET_TOKEN }} |