feat: add helm-docs target; fix: invalid --set param in functional tests #2
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 Docs | |
on: | |
pull_request: | |
paths: | |
- 'charts/**' | |
jobs: | |
helm-docs: | |
name: helm docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: helm docs | |
working-directory: ./opensearch-operator | |
run: | | |
make helm-docs | |
if ! git diff --exit-code --quiet; then | |
echo "Helm docs are out of date. Please run 'make helm-docs' and commit the changes." | |
exit 1 | |
fi |