fix: add yamllint config and remove trailing blank line in pr-build.yml (#80)

Add root .yamllint.yml with relaxed rules matching the megalinter config
and disable the truthy rule that flags `on:` in GitHub Actions workflows.
Remove trailing blank line from pr-build.yml.
This commit is contained in:
2026-02-27 02:14:36 +02:00
committed by GitHub
parent 85bb129057
commit 99d3e25d43
2 changed files with 13 additions and 1 deletions

View File

@@ -188,4 +188,3 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.pull_request.number }}
body-file: comment.md

13
.yamllint.yml Normal file
View File

@@ -0,0 +1,13 @@
---
extends: default
rules:
braces:
max-spaces-inside: 1
new-lines:
level: warning
type: unix
line-length:
max: 500
comments:
min-spaces-from-content: 1
truthy: disable