LOLBAS/.github/workflows/yaml-lint-reviewdog.yml
2022-09-10 17:17:55 -04:00

18 lines
376 B
YAML

---
name: YAML Lint with reviewdog
on:
pull_request:
branches:
- master
jobs:
lintFiles:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run yamllint
uses: reviewdog/action-yamllint@v1
with:
reporter: github-pr-review # Change reporter.
yamllint_flags: '--config-file .github/.yamllint'