Skip to content

Commit ee79693

Browse files
committed
scripts/test-infra: add step to verify Helm README
1 parent 97d3fb4 commit ee79693

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/test-infra/verify.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,11 @@ if ! git diff --quiet; then
7777
echo "Helm validation schema is not in sync. Run 'make helm-schema' to update"
7878
exit 1
7979
fi
80+
81+
# Check that the Helm README is in sync
82+
echo "Verifying Helm README"
83+
make helm-docs
84+
if ! git diff --quiet; then
85+
echo "Helm README is not in sync. Run 'make helm-docs' to update"
86+
exit 1
87+
fi

0 commit comments

Comments
 (0)