mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Native YAML - notifications (#3598)
This commit is contained in:
committed by
Matt Clay
parent
951b87492a
commit
75563d5325
@@ -89,18 +89,20 @@ requirements: [ ]
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
- flowdock: type=inbox
|
||||
token=AAAAAA
|
||||
from_address=user@example.com
|
||||
source='my cool app'
|
||||
msg='test from ansible'
|
||||
subject='test subject'
|
||||
- flowdock:
|
||||
type: inbox
|
||||
token: AAAAAA
|
||||
from_address: user@example.com
|
||||
source: my cool app
|
||||
msg: test from ansible
|
||||
subject: test subject
|
||||
|
||||
- flowdock: type=chat
|
||||
token=AAAAAA
|
||||
external_user_name=testuser
|
||||
msg='test from ansible'
|
||||
tags=tag1,tag2,tag3
|
||||
- flowdock:
|
||||
type: chat
|
||||
token: AAAAAA
|
||||
external_user_name: testuser
|
||||
msg: test from ansible
|
||||
tags: tag1,tag2,tag3
|
||||
'''
|
||||
|
||||
import urllib
|
||||
|
||||
Reference in New Issue
Block a user