2023-07-10 23:11:51 -04:00
|
|
|
name: Helm Chart linting
|
2023-07-08 18:41:12 -04:00
|
|
|
|
|
|
|
on:
|
2023-07-10 23:11:51 -04:00
|
|
|
pull_request:
|
2023-07-08 18:41:12 -04:00
|
|
|
branches:
|
2023-07-10 23:11:51 -04:00
|
|
|
- master
|
2023-10-12 09:15:10 -04:00
|
|
|
- next
|
2023-07-10 23:11:51 -04:00
|
|
|
|
|
|
|
# This ensures that previous jobs for the PR are canceled when the PR is
|
|
|
|
# updated.
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
2023-07-08 18:41:12 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install Helm
|
|
|
|
uses: azure/setup-helm@v3
|
|
|
|
|
|
|
|
- name: Run helm lint
|
|
|
|
run: |
|
|
|
|
cd helm/minio
|
|
|
|
helm lint .
|