mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00
27 lines
549 B
YAML
27 lines
549 B
YAML
![]() |
name: Helm Chart - Validate
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ main ]
|
||
|
paths-ignore:
|
||
|
- changelog.d/**'
|
||
|
pull_request:
|
||
|
branches: [ main ]
|
||
|
paths-ignore:
|
||
|
- changelog.d/**'
|
||
|
|
||
|
workflow_dispatch:
|
||
|
jobs:
|
||
|
lint-helm:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Lint Helm
|
||
|
uses: WyriHaximus/github-action-helm3@v3
|
||
|
with:
|
||
|
exec: helm lint ./helm/hookshot/
|
||
|
|
||
|
- name: Validate
|
||
|
uses: nlamirault/helm-kubeconform-action@v0.1.0
|
||
|
with:
|
||
|
charts: ./helm/
|