Browse Source
Update helm_ci.yml - add `ct` flag `--target-branch ${{ github.event.repository.default_branch }}` (#5106 )
* Update helm_ci.yml - add ct link flag --target-branch ${{ github.event.repository.default_branch }}
This validates that the chart version has been bumped
* Update helm_ci.yml - add --target-branch to ct list-changed command
pull/5110/head
JesseBot
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
.github/workflows/helm_ci.yml
@ -36,16 +36,16 @@ jobs:
- name : Run chart-testing (list-changed)
- name : Run chart-testing (list-changed)
id : list-changed
id : list-changed
run : |
run : |
changed=$(ct list-changed --chart-dirs k8s/charts)
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }} -- chart-dirs k8s/charts)
if [[ -n "$changed" ]]; then
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
echo "::set-output name=changed::true"
fi
fi
- name : Run chart-testing (lint)
- name : Run chart-testing (lint)
run : ct lint --all --validate-maintainers=false --chart-dirs k8s/charts
run : ct lint --target-branch ${{ github.event.repository.default_branch }} -- all --validate-maintainers=false --chart-dirs k8s/charts
- name : Create kind cluster
- name : Create kind cluster
uses : helm/kind-action@v1.8.0
uses : helm/kind-action@v1.8.0
- name : Run chart-testing (install)
- name : Run chart-testing (install)
run : ct install --all --chart-dirs k8s/charts
run : ct install --target-branch ${{ github.event.repository.default_branch }} -- all --chart-dirs k8s/charts