mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
* feat(helm): add base helm chart Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * chore(ci): ignore helm charts files in prettier Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * chore(ci): ignore helm charts files in prettier Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * chore(ci): prettier ignore charts folder Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * fix: missing capital J Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> --------- Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
34 lines
1.0 KiB
YAML
34 lines
1.0 KiB
YAML
name: Lint and Test Charts
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- develop
|
|
paths:
|
|
- '.github/workflows/lint-helm-charts.yml'
|
|
- 'charts/**'
|
|
jobs:
|
|
lint-test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up Helm
|
|
uses: azure/setup-helm@v4.2.0
|
|
- name: Ensure documentation is updated
|
|
uses: docker://jnorwood/helm-docs:v1.14.2
|
|
- name: Set up chart-testing
|
|
uses: helm/chart-testing-action@v2.6.1
|
|
- name: Run chart-testing (list-changed)
|
|
id: list-changed
|
|
run: |
|
|
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
|
|
if [[ -n "$changed" ]]; then
|
|
echo "changed=true" >> "$GITHUB_OUTPUT"
|
|
fi
|
|
- name: Run chart-testing
|
|
if: steps.list-changed.outputs.changed == 'true'
|
|
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --validate-maintainers=false
|