Skip to content

chore(deps): update ghcr.io/pyrra-dev/pyrra docker tag to v0.7.1 - autoclosed #335

chore(deps): update ghcr.io/pyrra-dev/pyrra docker tag to v0.7.1 - autoclosed

chore(deps): update ghcr.io/pyrra-dev/pyrra docker tag to v0.7.1 - autoclosed #335

Workflow file for this run

name: Check docs state
on: pull_request
jobs:
check-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Check Docs
run: |
docker run --rm --volume "$(pwd):/helm-docs" -u "$(id -u)" jnorwood/helm-docs:v1.11.0
if ! git diff --exit-code; then
echo "Documentation not up to date. Please run helm-docs and commit changes!" >&2
exit 1
fi