chore(deps): update dependency slackware_15_0/mozilla-thunderbird to … #4
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: Mirror Sync | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
codeberg: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 0 | |
show-progress: false | |
- name: Mirror to codeberg | |
run: | | |
git remote add mirror "https://${{ github.repository_owner }}:${{ secrets.CODEBERG_TOKEN }}@codeberg.org/${{ github.repository }}.git" | |
git push --tags --force --prune mirror "refs/remotes/origin/*:refs/heads/*" | |
git remote remove mirror |