From cbd8359ca62bb368ae92f7753055be605d80d0e2 Mon Sep 17 00:00:00 2001 From: Aryan Godara <65490434+AryanGodara@users.noreply.github.com> Date: Fri, 17 Jul 2026 17:40:06 +0530 Subject: [PATCH] Disable automated-trades repo dispatch on deploy --- .github/workflows/deploy.yaml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 9fd9f252dc..81ff84a3cb 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -151,15 +151,17 @@ jobs: token: ${{ secrets.AUTODEPLOY_TOKEN }} timeout: 600000 # 10 minutes + # Temporarily disabled while the automated-trades deploy setup is reworked + # (cowprotocol/automated-trade#36). Re-enable once the new job is in place. # After the new version is rolled out to the k8s cluster, ask the # infrastructure repo to run an automated test trade on every network # to verify the deployment end-to-end. - - name: "📣 Dispatch automated trades to infrastructure repo" - if: ${{ github.ref == 'refs/heads/main' }} - uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v4.0.1 - with: - token: ${{ secrets.WORKFLOW_DISPATCH_TOKEN }} - repository: cowprotocol/infrastructure - event-type: run-automated-trades - client-payload: |- - {"ref":"${{ github.ref }}","sha":"${{ github.sha }}","source":"services-deploy"} + # - name: "📣 Dispatch automated trades to infrastructure repo" + # if: ${{ github.ref == 'refs/heads/main' }} + # uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v4.0.1 + # with: + # token: ${{ secrets.WORKFLOW_DISPATCH_TOKEN }} + # repository: cowprotocol/infrastructure + # event-type: run-automated-trades + # client-payload: |- + # {"ref":"${{ github.ref }}","sha":"${{ github.sha }}","source":"services-deploy"}