Skip to content

Commit

Permalink
chore: amend task names to make UI easier to read in github
Browse files Browse the repository at this point in the history
  • Loading branch information
johnrwatson committed Aug 28, 2024
1 parent 533538d commit fb33838
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
environment: ${{ inputs.environment }}
secrets: inherit

down-services:
down: # the backend services
needs:
- set-maintenance-mode
strategy:
Expand All @@ -68,10 +68,10 @@ jobs:
environment: ${{ inputs.environment }}
secrets: inherit

upgrade-services:
upgrade: # the backend services
needs:
- set-service-versions
- down-services
- down
strategy:
fail-fast: false
matrix:
Expand All @@ -82,9 +82,9 @@ jobs:
service: ${{ matrix.service }}
secrets: inherit

up-services:
up: # the backend services
needs:
- upgrade-services
- upgrade
strategy:
fail-fast: false
matrix:
Expand All @@ -97,7 +97,7 @@ jobs:

migrate-and-up-sdf:
needs:
- up-services
- up
uses: ./.github/workflows/migrate-sdf.yml
with:
environment: ${{ inputs.environment }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/down-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
down:
environment: ${{ inputs.environment }}
name: Down service
name: ${{ inputs.service }} Down
runs-on: ubuntu-latest
steps:
- name: Configure AWS credentials for ${{ inputs.environment }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/up-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
up:
environment: ${{ inputs.environment }}
name: Up service
name: ${{ inputs.service }} Up
runs-on: ubuntu-latest
steps:
- name: Configure AWS credentials for ${{ inputs.environment }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upgrade-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
upgrade:
environment: ${{ inputs.environment }}
name: Upgrade Service
name: ${{ inputs.service }} Upgrade
runs-on: ubuntu-latest
steps:
- name: Configure AWS credentials for ${{ inputs.environment }}
Expand Down

0 comments on commit fb33838

Please sign in to comment.