From 078a1360a60efb14d94c1609461a624f57d06bf4 Mon Sep 17 00:00:00 2001 From: Hakadao Date: Fri, 19 Apr 2024 10:55:03 +0800 Subject: [PATCH] ci: remove sync-dev.yml --- .github/workflows/sync-dev.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/sync-dev.yml diff --git a/.github/workflows/sync-dev.yml b/.github/workflows/sync-dev.yml deleted file mode 100644 index 7793d02c0..000000000 --- a/.github/workflows/sync-dev.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Sync Back to Dev -on: - push: - branches: - - main - -jobs: - sync-branches: - if: github.repository == 'hakadao/BewlyBewly' - runs-on: ubuntu-latest - name: Syncing branches - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Set up Node - uses: actions/setup-node@v1 - with: - node-version: 12 - - name: Opening pull request - id: pull - uses: tretuna/sync-branches@1.4.0 - with: - GITHUB_TOKEN: ${{secrets.SYNC_TOKEN}} - FROM_BRANCH: main - TO_BRANCH: dev