Adding the github action to sync release branch from CE

This commit is contained in:
Arpit Mohan 2020-07-28 19:36:51 +05:30
parent 9c0b2a4e33
commit 1b2b47342b

View File

@ -0,0 +1,23 @@
# This workflow is responsible for syncing the release branch from the community edition repository
name: Sync Community workflow
on:
schedule:
- cron: "0 * * * *"
jobs:
repo-sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: release
# This step pulls the merges the latest release branch from the Appsmith CE into EE repository
- name: repo-sync
run: |
git remote add community git@github.com:appsmithorg/appsmith.git
git pull community release --no-edit
git push origin release