docs: Correct SOURCE_REPO_URL in Helm chart #11
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 Config Check | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'helm/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'helm/**' | |
jobs: | |
helm-config-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Helm | |
uses: azure/setup-helm@v3 | |
- name: Lint Helm Chart | |
run: | | |
helm lint ./helm |