From bc68b5d26509bd4ead9c2e4441007f366355d042 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gast=C3=B3n=20Fournier?= Date: Wed, 28 Jun 2023 14:13:18 +0200 Subject: [PATCH] chore: remove sync to enterprise from release branches (#4112) ## About the changes When we do releases on the release branch we should not sync that back to master on unleash-enterprise repo. At most we can trigger a different process to automate the release of unleash-enterprise, but that'd be a different story. --- .github/workflows/release.yaml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3ec8e0671d..129cecd9d9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -41,19 +41,3 @@ jobs: - name: Publish static assets to S3 run: | aws s3 cp frontend/build s3://getunleash-static/unleash/${{ steps.get_version.outputs.VERSION }} --recursive - - name: Trigger sync - uses: actions/github-script@v6 - with: - github-token: ${{ secrets.UNLEASH_CI_BUILDER_GITHUB_TOKEN }} - script: | - await github.rest.actions.createWorkflowDispatch({ - owner: 'ivarconr', - repo: 'unleash-enterprise', - workflow_id: 'cicd.yaml', - ref: 'master', - inputs: { - commit: "${{ github.event.head_commit.id }}", - actor: "${{ github.actor }}", - message: ${{ toJSON(github.event.head_commit.message) }}, - } - })