Update postgresql Docker tag to v15.3.0 #27
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/netmaker/Chart.yaml' | |
- 'charts/netmaker/values.yaml' | |
permissions: | |
contents: write | |
jobs: | |
update-docs: | |
name: update-docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# update the docs | |
- uses: gabe565/setup-helm-docs-action@v1 | |
- name: generate helm docs with helm-docs | |
run: helm-docs | |
# commit the docs changes back up | |
- uses: EndBug/add-and-commit@v9 | |
name: commit helm docs changes | |
with: | |
add: 'charts/matrix/README.md' | |
author_name: jessebot | |
committer_name: friend | |
message: 'Automated GHA - Updating helm docs' |