chore: Make Celery Queue Depth page less (#794) #546
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/helm-docs@v1.8.1 | |
./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' |