mirror of https://github.com/kortix-ai/suna.git
Update PRODUCTION Branch
This commit is contained in:
parent
243207aa7a
commit
0e2f2011c2
|
@ -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
|
Loading…
Reference in New Issue