From 71d8cae360432fe3100a13176f6dfe0ff8df2cb8 Mon Sep 17 00:00:00 2001 From: Arpit Mohan Date: Thu, 2 Jun 2022 06:34:10 +0200 Subject: [PATCH] chore: Deleting the sync community workflow from this repo as it is not required --- .github/workflows/sync-community-repo.yml | 28 ----------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/sync-community-repo.yml diff --git a/.github/workflows/sync-community-repo.yml b/.github/workflows/sync-community-repo.yml deleted file mode 100644 index 518934e380..0000000000 --- a/.github/workflows/sync-community-repo.yml +++ /dev/null @@ -1,28 +0,0 @@ -# This workflow is responsible for syncing the release branch from the community edition repository -name: Sync Community workflow - -on: - workflow_dispatch: - schedule: - - cron: "0 * * * *" - -jobs: - repo-sync: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - with: - ref: release - fetch-depth: 0 - - # 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 config user.email "automated@github.com" - git config user.name "Automated Github Action" - git config pull.rebase false - git pull community release --no-edit - git push origin release -