Update test_ci_secret.yaml - fix #48 #3
Workflow file for this run
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: | |
pull_request: | |
paths: | |
- 'charts/**' | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
update-docs: | |
name: update-docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
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: netfoundry/helm-docs-action@v1 | |
with: | |
working-dir: charts/appset-secret-plugin | |
git-push: "true" |