Files
ansible_role_package/tasks/pkgs/commitlint-cli.yml
Matthew Stobbs e5dd46f250 remove more notifys'
Signed-off-by: Matthew Stobbs <matthew.stobbs@ucalgary.ca>
2025-05-12 12:31:06 -06:00

14 lines
375 B
YAML

# vim: set filetype=yaml.ansible :
---
- name: Add commitlint-cli
when:
- commitlint_cli_configured is undefined
block:
- name: Append commitlint/cli to pkg_npm
ansible.builtin.set_fact:
pkg_npm: "{{ pkg_npm + ['@commitlint/cli'] }}"
- name: Set commitlint_cli_configured
ansible.builtin.set_fact:
commitlint_cli_configured: true