aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflow/repo-sync.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflow/repo-sync.yml')
-rw-r--r--.github/workflow/repo-sync.yml25
1 files changed, 0 insertions, 25 deletions
diff --git a/.github/workflow/repo-sync.yml b/.github/workflow/repo-sync.yml
deleted file mode 100644
index fce0721c7..000000000
--- a/.github/workflow/repo-sync.yml
+++ /dev/null
@@ -1,25 +0,0 @@
1name: Repo Sync
2
3on:
4 schedule:
5 - cron: "*/15 * * * *"
6
7jobs:
8 repo-sync:
9 name: Repo Sync
10 runs-on: ubuntu-latest
11 steps:
12 - uses: actions/checkout@v1
13 - uses: repo-sync/github-sync@v2
14 name: Sync repository to branch
15 with:
16 source_repo: ${{ secrets.SOURCE_REPO }}
17 source_branch: "master"
18 destination_branch: ${{ secrets.INTERMEDIATE_BRANCH }}
19 github_token: ${{ secrets.GITHUB_TOKEN }}
20 - uses: repo-sync/pull-request@v2
21 name: Create pull request
22 with:
23 source_branch: ${{ secrets.INTERMEDIATE_BRANCH }}
24 destination_branch: "master"
25 github_token: ${{ secrets.GITHUB_TOKEN }}