Skip to content

Commit b6b0f58

Browse files
committed
style: rename workflow steps
1 parent 189fb5a commit b6b0f58

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/k8s_apply.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414

1515
jobs:
1616
k8-apply:
17-
name: 'K8: Apply'
17+
name: 'K8: Apply Cluster Resources'
1818
runs-on: [self-hosted, "${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || github.ref_name }}"]
1919
environment: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || github.ref_name }}
2020
env:

.github/workflows/k8s_edit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414

1515
jobs:
1616
k8-edit:
17-
name: 'K8: Edit'
17+
name: 'K8: Edit Cluster Deployment'
1818
runs-on: [self-hosted, "${{ github.event_name == 'release' && 'prod' || github.event.pull_request.base.ref }}"]
1919
environment: ${{ github.event_name == 'release' && 'prod' || 'dev' }}
2020
env:

.github/workflows/k8s_restart.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616

1717
jobs:
1818
k8-restart:
19-
name: 'K8: Restart'
19+
name: 'K8: Restart Cluster Deployment'
2020
runs-on: [self-hosted, dev]
2121
environment: dev
2222
env:
@@ -56,7 +56,7 @@ jobs:
5656
admin: 'false'
5757
use-kubelogin: 'true'
5858

59-
- name: Run Restart
59+
- name: Restart Cluster Deployment
6060
shell: bash
6161
run: |
6262
bash cicd-deployment-scripts/k8s/restart.sh \

.github/workflows/k8s_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
# docker_image_tag: ${{ needs.call-az-acr-push-test.outputs.GH_REF_NAME }}
3434

3535
k8-test:
36-
name: 'K8: Test'
36+
name: 'K8: Test Cluster Deployment'
3737
runs-on: [self-hosted, dev]
3838
needs: [call-az-acr-push-test]
3939
if: ${{ !failure() && !cancelled() }}
@@ -82,7 +82,7 @@ jobs:
8282
admin: 'false'
8383
use-kubelogin: 'true'
8484

85-
- name: Run Test
85+
- name: Test Cluster Deployment
8686
shell: bash
8787
run: |
8888
cd ${{ env.KUBERNETES_CLUSTER_REPO_NAME }}

0 commit comments

Comments
 (0)