Files
chromebrew/.github/workflows/YAMLlint.yml
Satadru Pramanik, DO, MPH, MEng 1e3b638493 Add dependabot.yml to check for github action version updates, fixup reviewcop workflows (#10857)
* Create dependabot.yml

Copying from https://github.com/actions/runner/blob/main/.github/dependabot.yml

* Lint and adjust reviewdog workflows to use non-deprecated fail_level option.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
2024-12-04 15:54:53 +00:00

17 lines
333 B
YAML

---
name: YAMLLint
on: workflow_call
jobs:
yamllint:
runs-on: ubuntu-24.04
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: YAMLLint
uses: reviewdog/action-yamllint@v1
with:
fail_level: any
reporter: github-pr-check