Mirror from Codeberg #25
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 from Codeberg | |
| on: | |
| schedule: | |
| - cron: "*/10 * * * *" # every 10 minutes | |
| workflow_dispatch: | |
| jobs: | |
| mirror: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Mirror | |
| run: | | |
| git clone --mirror https://codeberg.org/openxp/patchkit.git | |
| cd patckit | |
| git push --mirror https://github.com/openxp/patchkit.git |