Skip to content

Ci/zizmor

Ci/zizmor #4

Workflow file for this run

---
name: "yamllint"
on: # yamllint disable-line rule:truthy
pull_request:
branches: [master]
paths:
- '**.yaml'
- '**.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true
permissions:
contents: read
jobs:
yamllint:
name: yamllint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: yamllint
uses: reviewdog/action-yamllint@v1
with:
fail_level: any
filter_mode: nofilter