aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflow
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-07-18 12:29:28 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-07-18 12:29:49 +0530
commit1b58e90e862e0a3c64f6086b8a8c8ea66ffe1faf (patch)
tree955f6804e01483b05620577a86ab07fd117a538a /.github/workflow
parentUpdate submodules, browserslist data updates and linter fixes [skip ci] (diff)
downloadferdium-app-1b58e90e862e0a3c64f6086b8a8c8ea66ffe1faf.tar.gz
ferdium-app-1b58e90e862e0a3c64f6086b8a8c8ea66ffe1faf.tar.zst
ferdium-app-1b58e90e862e0a3c64f6086b8a8c8ea66ffe1faf.zip
Slight perf improvement for GH build checkout action; removed unused workflow.
Diffstat (limited to '.github/workflow')
-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 }}