From 82cb92d29447269a49c4291d7cbd63138ef86537 Mon Sep 17 00:00:00 2001 From: tfrommen Date: Mon, 27 Jan 2025 20:51:44 +0100 Subject: [PATCH] remove sync workflow --- .github/workflows/sync-deployment-branch.yml | 38 -------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/sync-deployment-branch.yml diff --git a/.github/workflows/sync-deployment-branch.yml b/.github/workflows/sync-deployment-branch.yml deleted file mode 100644 index 6b3abad..0000000 --- a/.github/workflows/sync-deployment-branch.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Sync Development Branch - -on: - push: - branches: - - 'version/2' - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - sync: - runs-on: ubuntu-latest - - steps: - - name: Set up SSH - uses: webfactory/ssh-agent@v0.9.0 - with: - ssh-private-key: ${{ secrets.DEPLOYBOT_SSH_PRIVATE_KEY }} - - - name: Set up Git - run: | - git config --global user.email "${{ secrets.DEPLOYBOT_EMAIL }}" - git config --global user.name "${{ secrets.DEPLOYBOT_USER }}" - - - name: Checkout repository - uses: actions/checkout@v4 - with: - fetch-depth: 0 - token: ${{ secrets.DEPLOYBOT_API_TOKEN }} - ssh-key: ${{ secrets.DEPLOYBOT_SSH_PRIVATE_KEY }} - - - name: Merge target branch - run: | - git checkout development - git merge ${{ github.ref_name }} - git push