-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (37 loc) · 1.27 KB
/
mirror.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Mirror Branch to ISYE
on:
push:
branches:
- production
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- name: Pull CEC repo
run: |
git clone ${{ github.server_url }}/${{ github.repository }}
- name: Update CEC repository
run: |
cd ${{ github.event.repository.name }}
git switch production
git fetch --force origin
git pull
- name: Add the ISYE repository as a mirror
run: |
cd ${{ github.event.repository.name }}
git remote add mirror https://${{ vars.ISYE_MIRROR_USER }}:${{ secrets.ISYE_MIRROR_TOKEN }}@${{ vars.ISYE_MIRROR_REPO }}
git fetch --force mirror
- name: Remove the .github folder to avoid a recursive workflow
run: |
cd ${{ github.event.repository.name }}
rm -rf .github
- name: Commit the change
run: |
cd ${{ github.event.repository.name }}
git config --global user.email ""
git config --global user.name "GitHub Actions"
git commit -a -m "[GitHub Action] Synced with CEC parent repo"
- name: Push to the ISYE main branch
run: |
cd ${{ github.event.repository.name }}
git push mirror production --force