ci: use merge-gatekeeper #15
Workflow file for this run
This file contains hidden or 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: Helm Chart | |
permissions: | |
contents: read | |
on: | |
push: | |
paths: | |
- .github/workflows/helm-chart.yaml | |
- helm-chart/** | |
branches: | |
- '**' | |
tags-ignore: | |
- "**" | |
workflow_call: | |
jobs: | |
unittest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: d3adb5/helm-unittest-action@v2 | |
verify-readme-and-schema-are-up-tp-date: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- run: | | |
cp README.md README_original.md | |
cp values.schema.json values_original.schema.json | |
npx @bitnami/readme-generator-for-helm -v values.yaml -r README.md -s values.schema.json | |
diff README_original.md README.md | |
diff values_original.schema.json values.schema.json | |
working-directory: helm-chart |