🧪 Sync the yamllint config w/ alls-green

This commit is contained in:
Sviatoslav Sydorenko
2025-11-10 18:10:28 +01:00
parent 987f11e872
commit 6ed10a3202
4 changed files with 16 additions and 4 deletions
@@ -2,10 +2,12 @@
name: 🏗️
on: # yamllint disable-line rule:truthy
on:
pull_request:
push:
branches: ["release/*", "unstable/*"]
branches:
- release/*
- unstable/*
workflow_dispatch:
inputs:
tag:
+1 -1
View File
@@ -2,7 +2,7 @@
name: ♻️ 🧪
on: # yamllint disable-line rule:truthy
on:
workflow_call:
env:
+1 -1
View File
@@ -2,7 +2,7 @@
name: GitHub Actions Security Analysis with zizmor 🌈
on: # yamllint disable-line rule:truthy
on:
push:
pull_request:
+10
View File
@@ -6,5 +6,15 @@ rules:
indentation:
level: error
indent-sequences: false
quoted-strings:
required: only-when-needed
truthy:
allowed-values:
- >-
false
- >-
true
- >- # Allow "on" key name in GHA CI/CD workflow definitions
on
...