We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca5111e commit 5f138a8Copy full SHA for 5f138a8
ansible-lint/files/osism_fqcn.py
@@ -33,6 +33,10 @@ def matchtask(
33
print(exception)
34
sys.exit(0)
35
36
+ # Skip validation for block, rescue, and always constructs
37
+ if "action" not in task or "__ansible_module_original__" not in task["action"]:
38
+ return False
39
+
40
for category in osism_fqcn_list:
41
if (
42
task["action"]["__ansible_module_original__"]
0 commit comments