Skip to content

Commit

Permalink
chore: rename dashboard to orchestrator
Browse files Browse the repository at this point in the history
  • Loading branch information
PHILLIPS71 committed Jun 1, 2024
1 parent b0ee943 commit a8fb1fe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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)"
Expand All @@ -68,7 +68,7 @@ jobs:
name: "👷️ CI (App)"
timeout-minutes: 20
runs-on: ubuntu-latest
needs: [dashboard]
needs: [orchestrator]
strategy:
fail-fast: false
steps:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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)"
Expand All @@ -68,7 +68,7 @@ jobs:
name: "👷️ CI (App)"
timeout-minutes: 20
runs-on: ubuntu-latest
needs: [dashboard]
needs: [orchestrator]
strategy:
fail-fast: false
steps:
Expand Down

0 comments on commit a8fb1fe

Please sign in to comment.