Skip to content

feat: ✨ add envfrom values in console chart #34

feat: ✨ add envfrom values in console chart

feat: ✨ add envfrom values in console chart #34

Workflow file for this run

name: Lint and Test Charts
on:
pull_request:
paths:
- 'charts/**'
workflow_dispatch:
jobs:
path-filter:
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
outputs:
charts: ${{ steps.filter.outputs.charts }}
steps:
- name: Checks-out repository
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Check updated files paths
uses: dorny/paths-filter@v3
id: filter
with:
filters: |
charts:
- 'charts/**'
lint-chart:
if: ${{ needs.path-filter.outputs.charts == 'true' }}
runs-on: ubuntu-latest
needs:
- path-filter
steps:
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Run chart-testing (lint)
uses: helm/chart-testing-action@main
with:
command: lint
config: .github/ct.yaml
lint-docs:
if: ${{ needs.path-filter.outputs.charts == 'true' }}
runs-on: ubuntu-latest
needs:
- path-filter
- lint-chart
steps:
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Run helm-docs
run: .github/helm-docs.sh