-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9149ad7
commit 157a7d8
Showing
2 changed files
with
68 additions
and
9 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 |
---|---|---|
|
@@ -26,6 +26,28 @@ jobs: | |
|
||
- run: helm lint deploy/charts/version-checker | ||
|
||
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
- uses: dorny/paths-filter@v2 | ||
id: filter | ||
with: | ||
filters: | | ||
values: | ||
- 'deploy/charts/version-checker/values.yaml' | ||
# Only run if the values.yaml file has changed. | ||
- name: Render helm docs inside the README.md and push changes back to PR branch | ||
if: steps.filter.outputs.values == 'true' | ||
uses: shaybentk/[email protected] | ||
with: | ||
working-dir: deploy/charts/version-checker | ||
git-push: "true" | ||
|
||
|
||
test: | ||
name: Run unit tests for Helm Chart | ||
runs-on: ubuntu-latest | ||
|
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