Skip to content

build(deps): bump docker/login-action from 3.6.0 to 3.7.0 in the actions group #563

build(deps): bump docker/login-action from 3.6.0 to 3.7.0 in the actions group

build(deps): bump docker/login-action from 3.6.0 to 3.7.0 in the actions group #563

Workflow file for this run

name: Check Helm Docs
on:
pull_request:
jobs:
readme:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Get changed files
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: changes
with:
filters: |
charts:
- 'charts/**'
- name: Run Helm Docs and check the outcome
if: steps.changes.outputs.charts == 'true'
run: |
make docs
exit_code=$(git diff --exit-code)
exit ${exit_code}
- name: Print a comment in case of failure
if: failure() && github.event.pull_request.head.repo.full_name == github.repository && steps.changes.outputs.charts == 'true'
run: |
echo "The README.md files are not up to date.
Please, run \"make docs\" before pushing."
exit 1