-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(helm-docs): Run helm-docs as part of the release automation (#147)
* Run helm-docs as part of the release automation Fixes e.g. #146 * Simplify go run * feat(github): Add helm-docs atucommit code --------- Co-authored-by: Marcin Jasion <[email protected]>
- Loading branch information
Showing
2 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
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
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/[email protected] | ||
- 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 | ||
|
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