talosctl-image/.forgejo/workflows/yamllint.yaml
Marc Plano-Lesay cc8e737f48
Some checks failed
Checking yaml / Run yamllint (pull_request) Failing after 5s
Checking Renovate configuration / validate (pull_request) Successful in 1m29s
Build talosctl+talhelper+sops image (push on main only) / build (push) Successful in 4m49s
Init
2025-11-24 16:35:04 +11:00

18 lines
353 B
YAML

---
name: Checking yaml
on: # yamllint disable-line rule:truthy
pull_request:
jobs:
yamllint:
name: Run yamllint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run YAML linter
uses: bewuethr/yamllint-action@v1
with:
config-file: .yamllint.yaml
...