Remove GitHub actions staging workflow

This commit is contained in:
Samy Pessé
2023-12-12 19:23:23 +01:00
parent 7cdf04d2da
commit a4ae7140f2
-29
View File
@@ -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