Generate helm docs 2/merge by @CRThaze" #8
This file contains hidden or 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 | |
| run-name: Generate helm docs ${{ github.ref_name }} by @${{ github.actor }}" | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - charts/s3proxy/Chart.yaml | |
| - charts/s3proxy/values.yaml | |
| - README.md.gotmpl | |
| - README.md | |
| jobs: | |
| update-readme: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| 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 PR branch | |
| uses: losisin/helm-docs-github-action@v1 | |
| with: | |
| git-push: true | |
| git-push-user-name: "CometActions" | |
| git-push-user-email: "github-actions@comet.com" | |
| git-commit-message: "Update Helm documentation" |