Skip to content

Commit

Permalink
feat(github): Add helm-docs atucommit code
Browse files Browse the repository at this point in the history
  • Loading branch information
mjasion committed Aug 2, 2023
1 parent 5961d59 commit 076ca57
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 3 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/helm-docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Create helm-docs

on:
pull_request:
merge_group:
push:
branches:
- main
workflow_dispatch:

concurrency:
group: '${{ github.workflow }} @ ${{ github.ref }}'
cancel-in-progress: true

jobs:
helm-docs:
runs-on: ubuntu-latest
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92
with:
app_id: ${{ secrets.PROJECT_ACTIONS_MANAGEMENT_APP_ID }}
private_key: ${{ secrets.PROJECT_ACTIONS_MANAGEMENT_APP_PEM }}

- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ steps.generate_token.outputs.token }}

- name: Run helm-docs from go
working-directory: charts/studio/
run: |
go run github.com/norwoodj/helm-docs/...@v1.11.0
- name: Run helm-docs
working-directory: charts/studio/
run: |
docker run --pull always --rm --volume "$(pwd):/helm-docs" -u $(id -u) jnorwood/helm-docs:latest
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Helm-Docs update
file_pattern: charts/studio/README.md

3 changes: 0 additions & 3 deletions .github/workflows/studio_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ jobs:
do
go run github.com/mikefarah/yq/v4@v4.34.1 eval --inplace "$expression" charts/studio/Chart.yaml
done
- run: |
go run github.com/norwoodj/helm-docs/...@v1.11.0
working-directory: charts/studio
- uses: iterative/setup-cml@v1
- run: >
cml pr create .
Expand Down

0 comments on commit 076ca57

Please sign in to comment.