mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-14 19:58:45 +00:00
Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com> Co-authored-by: shuting <shuting@nirmata.com>
20 lines
384 B
YAML
20 lines
384 B
YAML
name: helm-check-docs
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- release*
|
|
paths:
|
|
- charts/**
|
|
- .github/workflows/helm-check-docs.yaml
|
|
|
|
jobs:
|
|
check-helm-docs:
|
|
name: Check Helm docs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Check docs are up to date
|
|
run: make check-helm-docs
|