mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00

* Import basic chart Signed-off-by: Rhea Danzey <rdanzey@element.io> * Test chart-releaser workflow Signed-off-by: Rhea Danzey <rdanzey@element.io> * Use latest version of chart-releaser action Signed-off-by: Rhea Danzey <rdanzey@element.io> * Test chart version bump Signed-off-by: Rhea Danzey <rdanzey@element.io> * Remove pages index Signed-off-by: Rhea Danzey <rdanzey@element.io> * Test bump Chart.yaml * Add preliminary docs Signed-off-by: Rhea Danzey <rdanzey@element.io> * Docs tidying Signed-off-by: Rhea Danzey <rdanzey@element.io> * Add changelog for helm chart Signed-off-by: Rhea Danzey <rdanzey@element.io> * Update helm/hookshot/README.md Co-authored-by: Will Hunt <will@half-shot.uk> * Update values.yaml with most recent default config (incl. comments) Signed-off-by: Rhea Danzey <rdanzey@element.io> * Add pre-build stage for helm chart to template appVersion and config into values Signed-off-by: Rhea Danzey <rdanzey@element.io> * Add lint / validate to helm chart Signed-off-by: Rhea Danzey <rdanzey@element.io> * Fix helm validate workflow & Rename Signed-off-by: Rhea Danzey <rdanzey@element.io> * Update .github/workflows/helm.yml Co-authored-by: Will Hunt <will@half-shot.uk> --------- Signed-off-by: Rhea Danzey <rdanzey@element.io> Co-authored-by: Will Hunt <will@half-shot.uk>
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/ |