🪞 Mirror to Codeberg #152
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
| # Syncs the full source of the Web-Check repo over to our Codeberg mirror | |
| # For all you non-Microsoft babes! | |
| # This is then accessible over at https://codeberg.org/alicia/web-check | |
| name: 🪞 Mirror to Codeberg | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '30 3 * * 0' # At 03:30 on Sunday | |
| jobs: | |
| codeberg: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: lissy93/repo-mirror-action@v1.5.0 | |
| with: | |
| ssh_key: ${{ secrets.CODEBERG_SSH }} | |
| host: git@codeberg.org | |
| user: alicia | |
| repo: web-check | |
| force_push: false |