diff --git a/.github/workflows/staging.yaml b/.github/workflows/staging.yaml deleted file mode 100644 index 65fd704a2..000000000 --- a/.github/workflows/staging.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: Update Staging Branch - -on: - push: - branches: [main] - -permissions: write-all - -jobs: - sync: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Setup Git User - run: | - git config user.name "GitHub Actions" - git config user.email "github-actions@gitbook.com" - - - name: Update Staging Branch - run: | - git fetch origin - git checkout staging - git pull - git merge origin/main - git push origin staging