Merge pull request #117 from rapidsurveys/dev #2
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 other git server | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - "*" | |
| jobs: | |
| mirror: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: yesolutions/mirror-action@master | |
| with: | |
| REMOTE: https://codeberg.org/rapidsurveys/oldr | |
| GIT_USERNAME: ${{ secrets.CODEBERG_USERNAME }} | |
| GIT_PASSWORD: ${{ secrets.CODEBERG_TOKEN }} |