Files
minio/.github/workflows/helm-lint.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 19: mapping key "concurrency" already defined at line 10 line 23: mapping key "permissions" already defined at line 14
2023-07-10 20:11:51 -07:00

40 lines
761 B
YAML

name: Helm Chart linting
on:
pull_request:
branches:
- master
# 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
# 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
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 .