We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0887cb1 commit a4e8b3aCopy full SHA for a4e8b3a
.github/workflows/release.yaml
@@ -8,8 +8,25 @@ on:
8
- charts/s3proxy/**
9
10
jobs:
11
+ update-readme:
12
+ runs-on: ubuntu-latest
13
+ timeout-minutes: 5
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+
17
+ - name: Render helm docs inside the README.md and push changes back to PR branch
18
+ uses: losisin/helm-docs-github-action@v1
19
+ with:
20
+ output-file: ../../README.md
21
+ template-files: README.md.gotmpl
22
+ git-push: true
23
+ git-push-user-name: "CometActions"
24
+ git-push-user-email: "[email protected]"
25
+ git-commit-message: "Update Helm documentation"
26
release:
27
runs-on: ubuntu-latest
28
+ needs:
29
+ - update-readme
30
steps:
31
- name: Checkout repository
32
uses: actions/checkout@v4
.github/workflows/update-readme.yaml
0 commit comments