[114-websockets] fixed alt_server_certs #7
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: Generate Helm docs | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
workflow_dispatch: | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Render helm docs inside the README.md and push changes back to branch | |
uses: netfoundry/helm-docs-action@v1 | |
with: | |
# recursively generate README.md for all charts in comma-sep list of | |
# parent dirs | |
search-roots: charts | |
git-push: "true" |