From 519033dd908ede127eaf9219b670b8e1a1901b7a Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Mon, 24 Mar 2025 09:17:18 -0400 Subject: [PATCH] Remove Upstream Sync --- .github/workflows/syncDev.yml | 28 ---------------------------- .github/workflows/syncMain.yml | 28 ---------------------------- 2 files changed, 56 deletions(-) delete mode 100644 .github/workflows/syncDev.yml delete mode 100644 .github/workflows/syncMain.yml diff --git a/.github/workflows/syncDev.yml b/.github/workflows/syncDev.yml deleted file mode 100644 index 3296ee9a..00000000 --- a/.github/workflows/syncDev.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Sync Vencord Dev -concurrency: - group: ${{ github.ref }} - cancel-in-progress: true - -env: - WORKFLOW_TOKEN: ${{ secrets.ETOKEN }} - UPSTREAM_URL: "https://github.com/Vendicated/Vencord.git" - UPSTREAM_BRANCH: "dev" - DOWNSTREAM_BRANCH: "dev" - -on: - schedule: - - cron: "0 * * * *" - workflow_dispatch: - -jobs: - build: - runs-on: self-hosted - 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 }} diff --git a/.github/workflows/syncMain.yml b/.github/workflows/syncMain.yml deleted file mode 100644 index 4591a0d0..00000000 --- a/.github/workflows/syncMain.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Sync Vencord Main -concurrency: - group: ${{ github.ref }} - cancel-in-progress: true - -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: self-hosted - steps: - - name: Sync Vencord Main - 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 }}