From a8fb1fe1669effce9110f75a3f27f3e4b94af95b Mon Sep 17 00:00:00 2001 From: Jordan Phillips Date: Sat, 1 Jun 2024 16:38:59 +1000 Subject: [PATCH] chore: rename dashboard to orchestrator --- .github/workflows/pull-request.yml | 10 +++++----- .github/workflows/push.yml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 508a7d2a..f5e779ea 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -25,8 +25,8 @@ jobs: run: dotnet test --verbosity quiet working-directory: ./src/Infrastructure - dashboard: - name: "👷️ CI (Dashboard)" + orchestrator: + name: "👷️ CI (Orchestrator)" timeout-minutes: 20 runs-on: ubuntu-latest steps: @@ -40,12 +40,12 @@ jobs: - name: "🧪 Test" run: dotnet test --verbosity quiet - working-directory: ./src/Service.Dashboard + working-directory: ./src/Service.Orchestrator - name: "⬆️ GraphQL Schema (upload)" uses: ./.github/actions/schema with: - working-directory: src/Service.Dashboard/src/HttpApi + working-directory: src/Service.Orchestrator/src/HttpApi encoder: name: "👷️ CI (Encoder)" @@ -68,7 +68,7 @@ jobs: name: "👷️ CI (App)" timeout-minutes: 20 runs-on: ubuntu-latest - needs: [dashboard] + needs: [orchestrator] strategy: fail-fast: false steps: diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 18470175..7a899810 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -25,8 +25,8 @@ jobs: run: dotnet test --verbosity quiet working-directory: ./src/Infrastructure - dashboard: - name: "👷️ CI (Dashboard)" + orchestrator: + name: "👷️ CI (Orchestrator)" timeout-minutes: 20 runs-on: ubuntu-latest steps: @@ -40,12 +40,12 @@ jobs: - name: "🧪 Test" run: dotnet test --verbosity quiet - working-directory: ./src/Service.Dashboard + working-directory: ./src/Service.Orchestrator - name: "⬆️ GraphQL Schema (upload)" uses: ./.github/actions/schema with: - working-directory: src/Service.Dashboard/src/HttpApi + working-directory: src/Service.Orchestrator/src/HttpApi encoder: name: "👷️ CI (Encoder)" @@ -68,7 +68,7 @@ jobs: name: "👷️ CI (App)" timeout-minutes: 20 runs-on: ubuntu-latest - needs: [dashboard] + needs: [orchestrator] strategy: fail-fast: false steps: