Skip to content

Commit 6880b53

Browse files
authored
Merge pull request #83 from edenlabllc/feature/RMK-V2-implement-support-for-rmk-version-0.45-and-higher
#v2 - refactoring examples
2 parents be08c22 + 02a1de5 commit 6880b53

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

examples/cluster-provision.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Cluster provisioner
22

33
# The name for workflow runs generated from the workflow.
4-
run-name: Cluster ${{ github.event.inputs.cluster_provisioner_command }}
4+
run-name: Cluster ${{ github.event.inputs.rmk_command }}
55

66
on:
77
workflow_dispatch:
@@ -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.rmk_command }}ed for branch: ${{ github.ref_name }}.'
2929
runs-on: ubuntu-22.04
3030
steps:
3131
- name: Checkout main repository
@@ -35,7 +35,7 @@ jobs:
3535
fetch-depth: 0
3636

3737
- name: Run gitlabflow action
38-
uses: edenlab/gitlabflow.cd.action@v2
38+
uses: edenlabllc/gitlabflow.cd.action@v2
3939
with:
4040
cluster_provider_credentials: ${{ secrets.CLUSTER_PROVIDER_CREDENTIALS }}
4141
github_token_repo_full_access: ${{ secrets.GITHUB_TOKEN_REPO_FULL_ACCESS }}

examples/helmfile-template-validate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0
2020

2121
- name: Run gitlabflow action
22-
uses: edenlab/gitlabflow.cd.action@v2
22+
uses: edenlabllc/gitlabflow.cd.action@v2
2323
with:
2424
cluster_provider_credentials: ${{ secrets.CLUSTER_PROVIDER_CREDENTIALS }}
2525
github_token_repo_full_access: ${{ secrets.GITHUB_TOKEN_REPO_FULL_ACCESS }}

examples/project-update.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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.rmk_project_dependency_name }} dependency to version ${{ github.event.inputs.rmk_project_dependency_version }} for branch: ${{ github.ref_name }}.'
2424
runs-on: ubuntu-22.04
2525
steps:
2626
- name: Checkout main repository
@@ -30,8 +30,7 @@ jobs:
3030
fetch-depth: 0
3131

3232
- name: Run gitlabflow action
33-
id: gitlabflow
34-
uses: ./.github/actions/gitlabflow
33+
uses: edenlabllc/gitlabflow.cd.action@v2
3534
with:
3635
allowed_environments: develop
3736
cluster_provider_credentials: ${{ secrets.CLUSTER_PROVIDER_CREDENTIALS }}

examples/release-sync.yaml

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

1717
jobs:
1818
release-sync:
19-
name: Checkout main and gitlabflow action repositories, run gitlabflow action for release sync
19+
name: 'Sync releases for branch: ${{ github.ref_name }}.'
2020
runs-on: ubuntu-22.04
2121
steps:
2222
- name: Checkout main repository
@@ -26,7 +26,7 @@ jobs:
2626
fetch-depth: 0
2727

2828
- name: Run gitlabflow action
29-
uses: edenlab/gitlabflow.cd.action@v2
29+
uses: edenlabllc/gitlabflow.cd.action@v2
3030
with:
3131
allowed_environments: develop,staging
3232
cluster_provider_credentials: ${{ secrets.CLUSTER_PROVIDER_CREDENTIALS }}

examples/release-update.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020

2121
jobs:
2222
release-update:
23-
name: Checkout and run action
23+
name: 'Update ${{ github.event.inputs.rmk_release_repository_full_name }} image to version ${{ github.event.inputs.rmk_release_version }} for branch: ${{ github.ref_name }}.'
2424
runs-on: ubuntu-22.04
2525
steps:
2626
- name: Checkout main repository
@@ -30,7 +30,7 @@ jobs:
3030
fetch-depth: 0
3131

3232
- name: Run gitlabflow action
33-
uses: edenlab/gitlabflow.cd.action@v2
33+
uses: edenlabllc/gitlabflow.cd.action@v2
3434
with:
3535
allowed_environments: develop
3636
cluster_provider_credentials: ${{ secrets.CLUSTER_PROVIDER_CREDENTIALS }}

0 commit comments

Comments
 (0)