mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-18 05:13:29 -05:00
Create syncMain.yml
This commit is contained in:
parent
8d01d9aecb
commit
6059cf7c25
1 changed files with 25 additions and 0 deletions
25
.github/workflows/syncMain.yml
vendored
Normal file
25
.github/workflows/syncMain.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
name: Sync Vencord Dev
|
||||
|
||||
env:
|
||||
WORKFLOW_TOKEN: ${{ secrets.ETOKEN }}
|
||||
UPSTREAM_URL: "https://github.com/Vendicated/Vencord.git"
|
||||
UPSTREAM_BRANCH: "main"
|
||||
DOWNSTREAM_BRANCH: "main"
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 * * * *"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Sync Vencord Dev
|
||||
id: sync
|
||||
uses: verticalsync/sync-upstream-repo@master
|
||||
with:
|
||||
upstream_repo: ${{ env.UPSTREAM_URL }}
|
||||
upstream_branch: ${{ env.UPSTREAM_BRANCH }}
|
||||
downstream_branch: ${{ env.DOWNSTREAM_BRANCH }}
|
||||
token: ${{ env.WORKFLOW_TOKEN }}
|
Loading…
Reference in a new issue