Skip to content

feat: update appVersion to v2.51.3 #8

feat: update appVersion to v2.51.3

feat: update appVersion to v2.51.3 #8

Workflow file for this run

name: 'Lint Charts'
on:
pull_request:
paths:
- 'charts/zitadel/templates/**'
- 'charts/zitadel/values.yaml'
- 'charts/zitadel/Chart.yaml'
jobs:
lint:
runs-on: 'ubuntu-20.04'
steps:
- id: 'checkout'
name: Check The Repo Out
uses: 'actions/checkout@v3'
with:
fetch-depth: 0
- id: 'set-up-helm'
name: Install Helm (The Chart Testing CLI Depends On It)
uses: 'azure/[email protected]'
with:
version: latest
- id: 'set-up-python'
name: Install Python (The Chart Testing CLI Depends On It)
uses: 'actions/[email protected]'
with:
python-version: 3.11.4
- id: 'set-up-chart-testing'
name: Install Chart Testing CLI
uses: 'helm/[email protected]'
with:
version: 'v3.8.0'
- id: 'list-changed'
name: Check If The Chart Has Changes (not only comments, for example)
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> $GITHUB_OUTPUT
fi
- id: 'lint'
name: Lint The Chart
run: 'ct lint --target-branch ${{ github.event.repository.default_branch }}'
if: steps.list-changed.outputs.changed == 'true'