Not Working As Expected: main.yml - include something.yml tags=something

Hello,

I’m writing a new playbook and executing it using ansible 2.1.0. It appears the tags I define in main.yml on an include line are being ignored. By comparison, this works as expected in ansible 1.9.2

Example:

roles/common/tasks/main.yml:

I found the solution here: http://docs.ansible.com/ansible/playbooks_tags.html

The syntax in this case that works for me is:

  • include: something.yml
    tags: something