.github/workflows/charts-lint-test.yaml: ignore changes to README.md and README.md.gotmpl files

This commit is contained in:
Johannes Kastl
2023-04-05 14:14:34 +02:00
parent 4f08a90fb7
commit 0df202d588

View File

@@ -1,6 +1,20 @@
name: Lint and Test Charts
on: pull_request
on:
push:
branches:
- main
paths:
- 'charts/**'
- '!charts/**/README.md'
- '!charts/**/README.md.gotmpl'
pull_request:
branches:
- main
paths:
- 'charts/**'
- '!charts/**/README.md'
- '!charts/**/README.md.gotmpl'
jobs:
lint-test: