From bdb017d47d8ef8c81dae5e86d437111784790cd1 Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Sat, 19 Mar 2022 17:09:26 +0100 Subject: [PATCH] ci: add workflow for documentation update --- .github/workflows/helmdocs.yaml | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/helmdocs.yaml diff --git a/.github/workflows/helmdocs.yaml b/.github/workflows/helmdocs.yaml new file mode 100644 index 0000000..b65e118 --- /dev/null +++ b/.github/workflows/helmdocs.yaml @@ -0,0 +1,34 @@ +--- +name: helmdocs + +"on": + push: + branches: + - master + +jobs: + helmdocs: + runs-on: ubuntu-20.04 + + steps: + - name: Checkout source + id: source + uses: actions/checkout@v3 + + - name: Update readme + uses: docker://jnorwood/helm-docs:v1.6.0 + with: + entrypoint: helm-docs + + - name: Commit changes + id: commit + uses: EndBug/add-and-commit@v9 + with: + author_name: GitHub Actions + author_email: github@webhippie.de + add: charts/ + message: automated readme update [skip ci] + push: true + commit: --signoff + +...