Skip to content

Commit 0176808

Browse files
committed
Add names to deployment
1 parent f36cd4d commit 0176808

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

.github/workflows/deploy-api.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ permissions:
1919

2020
jobs:
2121
deploy-api:
22+
name: Deploy API Service
2223
runs-on: ubuntu-latest
2324
environment: ${{ inputs.environment }}
2425
# Concurrency group name ensures concurrent workflow runs wait for any in-progress job to finish

.github/workflows/deploy-trigger.yml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ permissions:
1414

1515
jobs:
1616
deploy-trigger:
17+
name: Deploy Trigger.dev Service
1718
runs-on: ubuntu-latest
1819
if: startsWith(github.ref, 'refs/tags/')
1920
environment: ${{ inputs.environment }}

.github/workflows/deploy-updater.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ permissions:
1919

2020
jobs:
2121
deploy-updater:
22+
name: Deploy Updater Service
2223
runs-on: ubuntu-latest
2324
environment: ${{ inputs.environment }}
2425
# Concurrency group name ensures concurrent workflow runs wait for any in-progress job to finish

.github/workflows/run-migrations.yml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ permissions:
1515

1616
jobs:
1717
run-migrations:
18+
name: Run Database Migrations
1819
runs-on: ubuntu-latest
1920
environment: ${{ inputs.environment }}
2021
# Concurrency group name ensures concurrent workflow runs wait for any in-progress job to finish

0 commit comments

Comments
 (0)