If you have a large playbook, it may be useful to run/skip only specific parts of it instead of running the entire playbook. You can do this with Ansible tags:
---
- name: Install all critical and security updates
ansible.windows.win_updates:
category_names:
- SecurityUpdates
state: installed
tags: patching
ansbile-playbook deploy.yml --tags "patching"
ansbile-playbook deploy.yml --skip-tags "patching"