Skip to content

feat: update helm-docs workflow #23

feat: update helm-docs workflow

feat: update helm-docs workflow #23

Workflow file for this run

name: Helm Docs
on: pull_request
jobs:
helm-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0
- name: Set up Docker
uses: docker/setup-buildx-action@v2
- name: Run helm-docs
run: docker run --rm --volume "$(pwd):/helm-docs" -u "$(id -u)" jnorwood/helm-docs:v1.14.2
- name: Commit & Push changes
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.event.pull_request.head.ref }}
message: "docs: auto-generate chart docs"