Skip to content

Commit c4f97ba

Browse files
ssbarneaJkhall81
authored andcommitted
Merge branch 'main' into fix/4675-fix-yaml-subtag-filtering
2 parents c9f441e + 52e7d36 commit c4f97ba

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

src/ansiblelint/rules/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -531,10 +531,6 @@ def run(
531531
if tags or skip_list:
532532
filtered_matches = []
533533
for m in matches:
534-
# skip if exact tag is in skip_list or broad rule id is skipped
535-
if m.tag in skip_list or m.rule.id in skip_list:
536-
continue
537-
538534
# inclusion logic (if tags are provided)
539535
if tags:
540536
if (

src/ansiblelint/schemas/meta.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,25 @@
1919
"title": "AIXPlatformModel",
2020
"type": "object"
2121
},
22+
"AlmaLinuxPlatformModel": {
23+
"properties": {
24+
"name": {
25+
"const": "AlmaLinux",
26+
"title": "Name",
27+
"type": "string"
28+
},
29+
"versions": {
30+
"default": "all",
31+
"items": {
32+
"enum": ["8", "9", "10", "all"],
33+
"type": "string"
34+
},
35+
"type": "array"
36+
}
37+
},
38+
"title": "AlmaLinuxPlatformModel",
39+
"type": "object"
40+
},
2241
"AlpinePlatformModel": {
2342
"properties": {
2443
"name": {

0 commit comments

Comments
 (0)