Merge pull request #3930 from NoelDeMartin/MOBILE-3947 #1122
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 | |
on: | |
push: | |
branches: [ main, v*.x ] | |
jobs: | |
mirror: | |
if: github.repository == 'moodlehq/moodleapp' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Mirror the branch and tags | |
env: | |
GIT_TOKEN: ${{ secrets.GIT_TOKEN }} | |
run: ./.github/scripts/mirror.sh |