Skip to content

Add httpRoute and extraManifests values #56

Add httpRoute and extraManifests values

Add httpRoute and extraManifests values #56

Workflow file for this run

name: Helm docs
on:
pull_request:
types: [opened, synchronize, reopened]
env:
helm: v4.2.1
jobs:
docs:
name: Helm docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Run helm-docs
uses: losisin/helm-docs-github-action@3a4528e97c49a5e83de6b78c50c61c8ee5c9f944 # v2.0.0
- name: Check if there is any file update needed
run: |
status=$(git status --porcelain)
if [ -n "$status" ]; then
echo -e "Waiting modifications:\n$status"
echo "::error::Changes waiting. Please run 'helm-docs' prior to your next commit."
exit -1
fi
schema:
name: Generate schema file
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@dda3372f752e03dde6b3237bc9431cdc2f7a02a2 # v5.0.0
with:
version: ${{ env.helm }}
- name: Generate schema file
uses: losisin/helm-values-schema-json-action@cfefdf4241da6dbe17f3378e3cd0e863d4a4c3c8 # v3.0.1
with:
values: charts/monica/values.yaml
output: charts/monica/values.schema.json
indent: 2
fail-on-diff: true