ci: downgrade python to see if testing works again #212
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| # 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 | |
| ... |