2021-02-25 11:02:08 +00:00
|
|
|
name: Mirror
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-03-16 10:52:28 +00:00
|
|
|
branches: [ main, v*.x ]
|
2021-02-25 11:02:08 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
mirror:
|
|
|
|
if: github.repository == 'moodlehq/moodleapp'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-01-19 10:43:39 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-02-25 11:02:08 +00:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Mirror the branch and tags
|
|
|
|
env:
|
|
|
|
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
|
|
|
|
run: ./.github/scripts/mirror.sh
|