Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update(ci): process all charts for changes in values.yaml #624

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- name: Run Helm Docs and check the outcome
run: |
for chart in event-generator falco k8s-metacollector falco-exporter; do
for chart in $(ls ./charts); do
docker run \
--rm \
--workdir=/helm-docs \
Expand All @@ -27,9 +27,9 @@ jobs:

- name: Print a comment in case of failure
run: |
echo "The README.md filer are not up to date.
echo "The README.md files are not up to date.

Please, run make docs before pushing."
Please, run \"make docs\" before pushing."
exit 1
if: |
failure() && github.event.pull_request.head.repo.full_name == github.repository
Loading