Minimal Ansible playbook which just includes another playbook

This simple playbook just includes another playbook and runs on localhost.

---
- name: Initial System Setup
  hosts: localhost
  
- name: Include the other playbook
  ansible.builtin.import_playbook: my-sub-playbook.yaml