Bindings forwarder implementation #132
Workflow file for this run
This file contains 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
name: 'Helm Readme Generator' | |
on: | |
pull_request_target: | |
branches: | |
- main | |
paths: | |
- 'helm/*/values.yaml' | |
permissions: | |
contents: write | |
jobs: | |
update-readme: | |
name: Update README.md | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Install readme-generator-for-helm | |
run: npm install -g @bitnami/[email protected] | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{github.event.pull_request.head.ref}} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Execute readme-generator-for-helm | |
working-directory: helm/ngrok-operator | |
run: | | |
make update-readme | |
- name: Push changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update README.md and values.schema.json with readme-generator-for-helm |