From da1c8533e7055d6a6f4242a7efad36ada4b446e9 Mon Sep 17 00:00:00 2001 From: Pradeepto Sarkar Date: Fri, 27 Sep 2024 09:27:54 +0530 Subject: [PATCH] Delete .github/workflows/sync.yml --- .github/workflows/sync.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/sync.yml diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml deleted file mode 100644 index 88183983..00000000 --- a/.github/workflows/sync.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Sync Fork with Main - -on: - push: - branches: - - master # Trigger on pushes to the main repository's master branch - -jobs: - sync: - runs-on: ubuntu-latest - - steps: - - name: Use Node.js version 20 - uses: actions/setup-node@v2 - with: - node-version: '20.x' - - - name: Checkout main repo - uses: actions/checkout@v2 - with: - repository: namespacecomm/NSCC-BPIT-Website - ref: master - - - name: Checkout fork - uses: actions/checkout@v2 - with: - repository: pradeeptosarkar/NSCC-BPIT-Website - - - name: Merge changes from main repo - run: git merge master - - - name: Push changes to fork - run: git push origin HEAD