forked from camunda/camunda-platform-helm
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (31 loc) · 1.05 KB
/
chart-update-readme.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: "Chart - Update README"
on:
pull_request_target:
branches:
- main
paths:
- 'charts/camunda-platform/values.yaml'
jobs:
update-readme-metadata:
runs-on: ubuntu-latest
steps:
- name: Generate GitHub token
uses: tibdex/github-app-token@v2
id: generate-github-token
with:
app_id: ${{ secrets.GH_APP_ID }}
private_key: ${{ secrets.GH_APP_PRIVATE_KEY }}
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
token: '${{ steps.generate-github-token.outputs.token }}'
- name: Install readme-generator-for-helm
run: npm install -g @bitnami/readme-generator-for-helm
- name: Run readme generator
run: |
echo "Updating README.md"
make helm.readme-update
- uses: EndBug/[email protected]
with:
author_name: "renovate[bot]"
author_email: "29139614+renovate[bot]@users.noreply.github.com"
message: "chore: Update README.md using readme-generator-for-helm"