summaryrefslogtreecommitdiffstats
path: root/test/schemas/test/playbooks/tasks/notify.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/schemas/test/playbooks/tasks/notify.yml')
-rw-r--r--test/schemas/test/playbooks/tasks/notify.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/schemas/test/playbooks/tasks/notify.yml b/test/schemas/test/playbooks/tasks/notify.yml
new file mode 100644
index 0000000..88432d9
--- /dev/null
+++ b/test/schemas/test/playbooks/tasks/notify.yml
@@ -0,0 +1,11 @@
+- name: notify single handler
+ ansible.builtin.debug:
+ msg: task with single handler
+ notify: handler1
+
+- name: notify multiple handlers
+ ansible.builtin.debug:
+ msg: task with multiple handlers
+ notify:
+ - handler1
+ - handler2