Skip to content

Commit 2012574

Browse files
committed
2 parents 4a3145c + afb2b15 commit 2012574

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: repo_mirroring
2+
3+
on:
4+
schedule:
5+
- cron: "*/60 * * * *"
6+
workflow_dispatch:
7+
8+
jobs:
9+
repo-sync:
10+
runs-on: self-hosted
11+
steps:
12+
- uses: actions/checkout@v2
13+
with:
14+
persist-credentials: false
15+
- name: repo-sync-master
16+
uses: repo-sync/github-sync@v2
17+
with:
18+
source_repo: "buildaworldnet/IrrlichtBAW"
19+
source_branch: "master"
20+
destination_branch: "master_irrlichtbaw"
21+
github_token: ${{ secrets.GITHUB_TOKEN }}
22+
- name: repo-sync-shader-pipeline
23+
uses: repo-sync/github-sync@v2
24+
with:
25+
source_repo: "buildaworldnet/IrrlichtBAW"
26+
source_branch: "shader_pipeline"
27+
destination_branch: "shader_pipeline_irrlichtbaw"
28+
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)