ci: schedule nightly only when there are new changes on main #231
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AxoSyslog charts linter | |
on: | |
push: | |
paths: | |
- 'charts/**' | |
- '.github/workflows/**' | |
pull_request: | |
paths: | |
- 'charts/**' | |
- '.github/workflows/**' | |
defaults: | |
run: | |
working-directory: charts/axosyslog | |
jobs: | |
axosyslog: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Linter | |
run: | | |
docker run -v${PWD}:${PWD} alpine/helm lint ${PWD} |