Add support for pdbs for web+capture (#772) #523
This file contains 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: Update docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
update-readme: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run helm-docs | |
run: | | |
GOBIN=$PWD go install github.com/norwoodj/helm-docs/cmd/[email protected] | |
./helm-docs --sort-values-order file -t ALL_VALUES.md.gotmpl -o ALL_VALUES.md | |
rm ./helm-docs | |
- name: Commit bump | |
uses: EndBug/add-and-commit@v7 | |
with: | |
author_name: Max Hedgehog | |
author_email: 127861667+max-hedgehog[bot]@users.noreply.github.com | |
branch: ${{ github.event.pull_request.base.ref }} | |
message: 'Regenerate chart ALL_VALUES.md' |