Skip to content

NEOS-1198, NEOS-1225 Adds sidecars to helm charts, adds auth trust host, updates helm docs #28

NEOS-1198, NEOS-1225 Adds sidecars to helm charts, adds auth trust host, updates helm docs

NEOS-1198, NEOS-1225 Adds sidecars to helm charts, adds auth trust host, updates helm docs #28

Workflow file for this run

on:
pull_request:
paths:
- charts/**
- backend/charts/**
- worker/charts/**
- frontend/apps/web/charts/**
name: Helm
jobs:
lint:
name: Check Helm Readmes
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check Docs
run: |
make helm/docs
if ! git diff --exit-code; then
echo "Documentation not up to date. Please run helm-docs and commit changes!" >&2
exit 1
fi