Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Sync Vencord main branch #3379

Sync Vencord main branch

Sync Vencord main branch #3379

Workflow file for this run

name: Sync Vencord main branch
env:
WORKFLOW_TOKEN: ${{ secrets.PAT_TOKEN }}
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: GitHub Sync to Upstream Repository
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 }}