From a4ae7140f206cd96f31f3f17c6f785ba7adbc690 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samy=20Pess=C3=A9?= Date: Tue, 12 Dec 2023 19:23:23 +0100 Subject: [PATCH] Remove GitHub actions staging workflow --- .github/workflows/staging.yaml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/staging.yaml 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