Skip to content

Commit 928bc9c

Browse files
committed
chore(gh-actions): 👷 Minor changes on job names
1 parent 53234d6 commit 928bc9c

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/deploy-chatbot.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77

88
jobs:
99
parse-command:
10+
name: Parse command
1011
runs-on: ubuntu-latest
1112
outputs:
1213
artifact: ${{ steps.parse-deploy-command.outputs.infra }}
@@ -33,6 +34,7 @@ jobs:
3334
echo "Infra: ${{ steps.parse-deploy-command.outputs.infra }}"
3435
3536
notify-user:
37+
name: Notify user
3638
needs: [parse-command]
3739
uses: zerodaycode/app-summoners-sync/.github/workflows/notify-user.yml@develop
3840
with:
@@ -41,15 +43,17 @@ jobs:
4143
infra: ${{ needs.parse-command.outputs.artifact }}
4244

4345
deploy-project:
46+
name: Deploy project
4447
needs: [parse-command, notify-user]
4548
if: needs.parse-command.outputs.project != ''
4649
uses: zerodaycode/app-summoners-sync/.github/workflows/deploy-project.yml@develop
4750
with:
4851
project: ${{ needs.parse-command.outputs.project }}
4952
environment: ${{ needs.parse-command.outputs.environment }}
5053
secrets: inherit
51-
54+
5255
deploy-infra:
56+
name: Deploy Infrastructure
5357
needs: [parse-command, notify-user]
5458
if: needs.parse-command.outputs.artifact != ''
5559
uses: zerodaycode/app-summoners-sync/.github/workflows/deploy-infra.yml@develop

.github/workflows/deploy-infra.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
type: string
1212
jobs:
1313
deploy_infra_artifact:
14+
name: Deploy Infrastructure Artifact
1415
runs-on: ubuntu-latest
1516
steps:
1617
- name: Validate Artifact
@@ -57,8 +58,7 @@ jobs:
5758
target: /opt/summoners-sync/
5859
rm: true
5960

60-
# Deploy Infra
61-
- name: Deploy Infra
61+
- name: Run docker with env
6262
uses: appleboy/[email protected]
6363
with:
6464
host: ${{ secrets.DO_SSH_HOST_PRE }}

.github/workflows/deploy-project.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313

1414
jobs:
1515
deploy_project_artifact:
16+
name: Deploy Project Artifact
1617
runs-on: ubuntu-latest
1718
steps:
1819
- name: Generate Token

.github/workflows/notify-user.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on:
1515

1616
jobs:
1717
notify-user:
18+
name: Notify user
1819
runs-on: ubuntu-latest
1920
steps:
2021

0 commit comments

Comments
 (0)