This commit is contained in:
Edward Firmo
2024-01-11 17:01:46 +01:00
parent ca8f49a24d
commit e06cd0d464
2 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
--- ---
name: Validate YAML name: Validate YAML
# yamllint disable-line rule:truthy
on: on:
push: push:
pull_request: pull_request:

View File

@@ -1,6 +1,5 @@
# https://yamllint.readthedocs.io/en/stable/configuration.html#default-configuration # https://yamllint.readthedocs.io/en/stable/configuration.html#default-configuration
--- ---
yaml-files: yaml-files:
- '*.yaml' - '*.yaml'
- '*.yml' - '*.yml'
@@ -39,4 +38,5 @@ rules:
quoted-strings: disable quoted-strings: disable
trailing-spaces: enable trailing-spaces: enable
truthy: truthy:
level: warning level: warning
...