Update the TCSP settings for helm testing #139
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: Lint Helm Chart | |
on: | |
workflow_dispatch: | |
pull_request_target: | |
branches: | |
- main | |
- bitnami-labs:main | |
paths: | |
- 'helm/**' | |
env: | |
CSP_API_URL: https://console.tanzu.broadcom.com | |
CSP_API_TOKEN: ${{ secrets.CSP_API_TOKEN }} | |
VIB_PUBLIC_URL: https://cp.bromelia.vmware.com | |
jobs: | |
# make sure chart is linted/safe | |
vib-validate: | |
runs-on: ubuntu-latest | |
name: Lint chart | |
steps: | |
- uses: actions/checkout@v3.1.0 | |
with: | |
ref: ${{github.event.pull_request.head.ref}} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
- uses: vmware-labs/vmware-image-builder-action@v0.6.0 |