Update PRODUCTION Branch

This commit is contained in:
Adam Cohen Hillel 2025-04-21 01:14:59 +01:00
parent 243207aa7a
commit 0e2f2011c2
1 changed files with 21 additions and 0 deletions

21
.github/workflows/update-PROD.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Update PRODUCTION Branch
on:
workflow_dispatch:
jobs:
update-production:
name: Rebase PRODUCTION to main
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "GitHub Actions"
git config user.email "actions@github.com"
- name: Rebase PRODUCTION
run: |
git checkout PRODUCTION
git rebase origin/main
git push origin PRODUCTION --force