Skip to content

patch(scw-exporter): raised chart version to 3.2.11 #218

patch(scw-exporter): raised chart version to 3.2.11

patch(scw-exporter): raised chart version to 3.2.11 #218

Workflow file for this run

---
# yaml-language-server: $schema=https://www.schemastore.org/github-workflow.json
name: helmdocs
"on":
workflow_dispatch:
push:
branches:
- master
permissions:
contents: read
jobs:
helmdocs:
runs-on: ubuntu-latest
if: github.repository == 'promhippie/charts'
steps:
- name: Checkout source
uses: actions/checkout@v5
with:
token: ${{ secrets.BOT_ACCESS_TOKEN }}
fetch-depth: 0
- name: Update readme
id: docs
uses: docker://jnorwood/helm-docs:v1.14.2
with:
entrypoint: helm-docs
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
author_name: GitHub Actions
author_email: github@webhippie.de
add: stable/
message: "docs: automated readme updates [skip ci]"
push: true
commit: --signoff
...