Skip to content

Commit

Permalink
ci: add workflow for documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Mar 19, 2022
1 parent 6c1c55e commit bdb017d
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/helmdocs.yaml
Original file line number Diff line number Diff line change
@@ -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: [email protected]
add: charts/
message: automated readme update [skip ci]
push: true
commit: --signoff

...

0 comments on commit bdb017d

Please sign in to comment.