From 3d1a9813a824ca0282572431eb3e057576fab1f1 Mon Sep 17 00:00:00 2001 From: Tim Diekmann Date: Fri, 6 Mar 2026 12:21:51 +0100 Subject: [PATCH] SRE-571: Rename graph-test to graph-admin in backend CD workflow Rename the ECS service references from `graph-test` to `graph-admin` to match the admin endpoint introduced in BE-426. --- .github/workflows/hash-backend-cd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/hash-backend-cd.yml b/.github/workflows/hash-backend-cd.yml index 7a55d39f510..772fb817901 100644 --- a/.github/workflows/hash-backend-cd.yml +++ b/.github/workflows/hash-backend-cd.yml @@ -25,7 +25,7 @@ env: APP_CLUSTER_NAME: h-stage-euc1-app APP_DEPLOY_ROLE_ARN: arn:aws:iam::054238437032:role/h-stage-euc1-app-deploy APP_GRAPH_SERVICE_NAME: h-stage-euc1-app-graph - APP_GRAPH_TEST_SERVICE_NAME: h-stage-euc1-app-graph-test + APP_GRAPH_ADMIN_SERVICE_NAME: h-stage-euc1-app-graph-admin APP_TYPE_FETCHER_SERVICE_NAME: h-stage-euc1-app-type-fetcher APP_API_SERVICE_NAME: h-stage-euc1-app-api WORKER_CLUSTER_NAME: h-stage-euc1-worker @@ -320,7 +320,7 @@ jobs: ECS_SERVICE_NAME: ${{ env.APP_GRAPH_SERVICE_NAME }} ROLE_ARN: ${{ env.APP_DEPLOY_ROLE_ARN }} - - name: Redeploy graph-test staging service + - name: Redeploy graph-admin staging service uses: ./.github/actions/redeploy-ecs-service with: AWS_ACCESS_KEY_ID: ${{ steps.secrets.outputs.AWS_ACCESS_KEY_ID }} @@ -328,7 +328,7 @@ jobs: AWS_SESSION_TOKEN: ${{ steps.secrets.outputs.AWS_SESSION_TOKEN }} AWS_REGION: ${{ env.AWS_REGION }} ECS_CLUSTER_NAME: ${{ env.APP_CLUSTER_NAME }} - ECS_SERVICE_NAME: ${{ env.APP_GRAPH_TEST_SERVICE_NAME }} + ECS_SERVICE_NAME: ${{ env.APP_GRAPH_ADMIN_SERVICE_NAME }} ROLE_ARN: ${{ env.APP_DEPLOY_ROLE_ARN }} - name: Redeploy type-fetcher staging service