add rollout hpa #71
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Helm Chart | |
on: | |
push: | |
branches-ignore: | |
- "gh-pages" | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Dump GitHub context | |
id: github_context_step | |
continue-on-error: true | |
run: echo '${{ toJSON(github) }}' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check diff chart | |
run: make ci:diff | |
- name: Setup Helm | |
run: make ci:enable:helm | |
- name: Setup Kubeval | |
run: make ci:enable:kubeval | |
- name: Check chart version | |
run: make ci:diff:chart | xargs -I{} /bin/bash -c "cd ./{} && ../.github/scripts/check-version.sh || exit 255" | |
- name: Check lint | |
run: make ci:diff | xargs -I{} /bin/bash -c "cd ./{} && make lint || exit 255" |