Skip to content

Chart release v1.1.0 #15

Chart release v1.1.0

Chart release v1.1.0 #15

Workflow file for this run

name: Lint Charts
on:
pull_request:
paths:
- 'charts/**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/[email protected]
with:
version: v3.14.1
- uses: actions/setup-python@v5
with:
python-version: '3.10'
check-latest: true
# see example https://github.com/helm/chart-testing-action
- name: Set up chart-testing
uses: helm/[email protected]
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi