Skip to content

update producer image #167

update producer image

update producer image #167

Workflow file for this run

name: Update docs
on:
pull_request:
paths:
- 'charts/**'
- '!charts/**/README.md'
branches: [main]
workflow_dispatch:
permissions:
contents: write
jobs:
update-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
token: ${{ secrets.REPO_TOKEN || github.token }}
- name: Run helm-docs
working-directory: charts/dafka-producer
run: |
GOBIN=$PWD GO111MODULE=on go get github.com/norwoodj/helm-docs/cmd/helm-docs
./helm-docs --sort-values-order file
rm helm-docs
- name: Commit bump
uses: EndBug/add-and-commit@v9
with:
message: 'Regenerate chart README.md [skip-ci]'