Skip to content

Commit 76db48b

Browse files
committed
#v2 - refactoring
1 parent 44cc859 commit 76db48b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

examples/cluster-provision.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
inputs:
99
rmk_command:
10-
description: Enter command action for cluster provisioner, available: provision or destroy.
10+
description: 'Enter command action for cluster provisioner, available: provision or destroy.'
1111
required: true
1212
default: provision
1313
type: choice
@@ -25,7 +25,7 @@ env:
2525

2626
jobs:
2727
cluster-provision:
28-
name: Cluster will be ${{ github.event.inputs.cluster_provisioner_command }} for branch: ${{ github.ref_name }}.
28+
name: 'Cluster will be ${{ github.event.inputs.cluster_provisioner_command }} for branch: ${{ github.ref_name }}.'
2929
runs-on: ubuntu-22.04
3030
steps:
3131
- name: Checkout main repository

examples/project-update.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ on:
44
workflow_dispatch:
55
inputs:
66
rmk_project_dependency_name:
7-
description: Enter the dependency name from the project.yaml file.
7+
description: Enter the dependency name from the <project.yaml> file.
88
required: true
99
rmk_project_dependency_version:
10-
description: Enter the dependency version from the project.yaml file.
10+
description: Enter the dependency version from the <project.yaml> file.
1111
required: true
1212
rmk_version:
1313
description: Specify RMK version.
@@ -20,7 +20,7 @@ env:
2020

2121
jobs:
2222
project-update:
23-
name: Update ${{ github.event.inputs.project_dependencies_name }} dependency to version ${{ github.event.inputs.project_dependencies_version }} for branch: ${{ github.ref_name }}.
23+
name: 'Update ${{ github.event.inputs.project_dependencies_name }} dependency to version ${{ github.event.inputs.project_dependencies_version }} for branch: ${{ github.ref_name }}.'
2424
runs-on: ubuntu-22.04
2525
steps:
2626
- name: Checkout main repository

0 commit comments

Comments
 (0)