bug fixes + ability to go gender neutral (aka turn em off) #3
This file contains hidden or 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: Mirror to GitLab and Codeberg | |
| on: | |
| push: | |
| branches: [ "*" ] | |
| workflow_dispatch: | |
| jobs: | |
| mirror: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Sync repositories | |
| run: | | |
| git clone --bare https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git mirror.git | |
| cd mirror.git | |
| git push --mirror https://AlchlcSystm:${{ secrets.GITLAB_TOKEN }}@gitlab.com/AlchlcSystm/${{ github.event.repository.name }}.git | |
| git push --mirror https://AlchlcDvl:${{ secrets.CODEBERG_TOKEN }}@codeberg.org/AlchlcDvl/${{ github.event.repository.name }}.git |