implement #131: create bucket if it doesn't exist yet, mc only yet #29
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: Update Helm Chart README.md | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ["main"] | |
paths: | |
- "charts/mgob/**" | |
jobs: | |
update-readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Run helm-docs | |
run: | | |
curl -sSL https://github.com/norwoodj/helm-docs/releases/download/v1.11.0/helm-docs_1.11.0_Linux_x86_64.deb -o helm-docs.deb \ | |
&& sudo dpkg -i helm-docs.deb \ | |
&& rm helm-docs.deb \ | |
&& helm-docs --sort-values-order file | |
- name: Commit bump | |
uses: EndBug/[email protected] | |
with: | |
message: "Regenerate chart README.md" | |
add: "charts/mgob/README.md" |