Skip to content

Commit d0d6807

Browse files
committed
ci: added gh actions
1 parent e483fa7 commit d0d6807

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/ci-helm-chart.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
required: true
88
CI_HELM_CHART_NAME_FILTER:
99
type: string
10-
required: true
1110
CI_GIT_BASELINE_BRANCH:
1211
type: string
1312
default: 'main'
@@ -44,6 +43,9 @@ jobs:
4443
- name: Print user input
4544
run: |
4645
echo 'CI_UPDATE_TYPE: ${{ inputs.CI_UPDATE_TYPE }}'
46+
echo 'CI_HELM_CHART_NAME_FILTER: ${{ inputs.CI_HELM_CHART_NAME_FILTER }}'
47+
echo 'CI_GIT_BASELINE_BRANCH: ${{ inputs.CI_GIT_BASELINE_BRANCH }}'
48+
4749
- name: Checkout repository
4850
uses: actions/checkout@v3
4951
- name: Set up Node.js
@@ -56,9 +58,9 @@ jobs:
5658
npm install
5759
- name: Update helm charts
5860
env:
59-
CI_UPDATE_TYPE: ${{ github.event.inputs.CI_UPDATE_TYPE }}
60-
CI_HELM_CHART_NAME_FILTER: ${{ github.event.inputs.CI_HELM_CHART_NAME_FILTER }}
61-
CI_GIT_BASELINE_BRANCH: ${{ github.event.inputs.CI_GIT_BASELINE_BRANCH }}
61+
CI_UPDATE_TYPE: ${{ inputs.CI_UPDATE_TYPE }}
62+
CI_HELM_CHART_NAME_FILTER: ${{ inputs.CI_HELM_CHART_NAME_FILTER }}
63+
CI_GIT_BASELINE_BRANCH: ${{ inputs.CI_GIT_BASELINE_BRANCH }}
6264
run: |
6365
cd ci/
6466
npm run update-helm-chart-deps

0 commit comments

Comments
 (0)