chore(deps): update helm release traefik to v34 #7918
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: Lint YAML files | |
on: | |
pull_request: | |
paths: | |
- '**.yaml' | |
- '**.yml' | |
jobs: | |
yamllint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Get changed YAML files | |
uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
list-files: shell | |
token: ${{ secrets.GITHUB_TOKEN }} | |
filters: | | |
yaml: | |
- added|modified: '**.yaml' | |
- added|modified: '**.yml' | |
- name: Lint YAML files | |
if: steps.filter.outputs.yaml == 'true' | |
uses: reviewdog/action-yamllint@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
yamllint_flags: "-c .github/lint/.yamllint.yaml" | |
reporter: github-pr-review | |
filter_mode: added | |
workdir: ${{ github.workspace }} | |
fail_on_error: true |