We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4a3145c + afb2b15 commit 2012574Copy full SHA for 2012574
.github/workflows/repo_mirroring_workflow.yml
@@ -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
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
24
25
26
+ source_branch: "shader_pipeline"
27
+ destination_branch: "shader_pipeline_irrlichtbaw"
28
0 commit comments