Create a K8s event attached to the policy report at each update #188
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: | |
- main | |
paths: | |
- "charts/**" | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
- name: chart-testing (ct lint) | |
uses: helm/[email protected] | |
- name: Run Helm Chart lint | |
run: | | |
ct lint \ | |
--target-branch=main \ | |
--validate-maintainers=true \ | |
--chart-dirs charts |