Skip to content

feat: create PG4K LTS chart as sub-chart of PG4K-PGD (#175) #599

feat: create PG4K LTS chart as sub-chart of PG4K-PGD (#175)

feat: create PG4K LTS chart as sub-chart of PG4K-PGD (#175) #599

Workflow file for this run

name: linter
on:
push:
branches:
- '**'
- '!gh-pages'
jobs:
linter:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.11.3
- uses: actions/setup-python@v5
with:
python-version: 3.7
- 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=main)
if [[ -n "$changed" ]]; then
echo "changed=true" >> $GITHUB_OUTPUT
fi
- name: Run chart-testing (lint)
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --target-branch=main --check-version-increment=false