Skip to content

Commit

Permalink
style: rename workflow steps
Browse files Browse the repository at this point in the history
  • Loading branch information
andhreljaKern committed Oct 2, 2024
1 parent 189fb5a commit b6b0f58
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/k8s_apply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:

jobs:
k8-apply:
name: 'K8: Apply'
name: 'K8: Apply Cluster Resources'
runs-on: [self-hosted, "${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || github.ref_name }}"]
environment: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || github.ref_name }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/k8s_edit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:

jobs:
k8-edit:
name: 'K8: Edit'
name: 'K8: Edit Cluster Deployment'
runs-on: [self-hosted, "${{ github.event_name == 'release' && 'prod' || github.event.pull_request.base.ref }}"]
environment: ${{ github.event_name == 'release' && 'prod' || 'dev' }}
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/k8s_restart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:

jobs:
k8-restart:
name: 'K8: Restart'
name: 'K8: Restart Cluster Deployment'
runs-on: [self-hosted, dev]
environment: dev
env:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
admin: 'false'
use-kubelogin: 'true'

- name: Run Restart
- name: Restart Cluster Deployment
shell: bash
run: |
bash cicd-deployment-scripts/k8s/restart.sh \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/k8s_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# docker_image_tag: ${{ needs.call-az-acr-push-test.outputs.GH_REF_NAME }}

k8-test:
name: 'K8: Test'
name: 'K8: Test Cluster Deployment'
runs-on: [self-hosted, dev]
needs: [call-az-acr-push-test]
if: ${{ !failure() && !cancelled() }}
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
admin: 'false'
use-kubelogin: 'true'

- name: Run Test
- name: Test Cluster Deployment
shell: bash
run: |
cd ${{ env.KUBERNETES_CLUSTER_REPO_NAME }}
Expand Down

0 comments on commit b6b0f58

Please sign in to comment.