PromucFlow_constructor/.github/workflows/sync-community-repo.yml
2020-07-29 01:05:42 +05:30

24 lines
588 B
YAML

# 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 https://github.com/appsmithorg/appsmith.git
git pull community release --no-edit
git push origin release