File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
examples/templates/playbooks Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -161,6 +161,7 @@ synchronize
161161sysvinit
162162taskimports
163163taskincludes
164+ templating
164165testmon
165166testns
166167testpath
Original file line number Diff line number Diff line change 1+ ---
2+ # even if is hosted under playbooks and is named playbook.yml, this file
3+ # is not a real playbook because it is hosted in a "templates" directory
4+ # and that means we will avoid processing it as a playbook. Templates use
5+ # either jinja2 or another templating engine, so we cannot load them.
6+ foo : bar
Original file line number Diff line number Diff line change 99 # Do not sort this list, order matters.
1010 {"jinja2" : "**/*.j2" }, # jinja2 templates are not always parsable as something else
1111 {"jinja2" : "**/*.j2.*" },
12+ {"text" : "**/templates/**/*.*" }, # templates are likely not validable
1213 {"inventory" : "**/inventory/**.yml" },
1314 {"requirements" : "**/meta/requirements.yml" }, # v1 only
1415 # https://docs.ansible.com/ansible/latest/dev_guide/collections_galaxy_meta.html
You can’t perform that action at this time.
0 commit comments