mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Native YAML - web_infrastructure/jira.py (#18832)
This commit is contained in:
committed by
John R Barker
parent
21940f8c8e
commit
b811350f00
@@ -199,11 +199,17 @@ EXAMPLES = """
|
||||
become: true
|
||||
user:
|
||||
name: '{{ issue.meta.fields.creator.name }}'
|
||||
comment: '{{issue.meta.fields.creator.displayName }}'
|
||||
comment: '{{ issue.meta.fields.creator.displayName }}'
|
||||
|
||||
- name: Create link from HSP-1 to MKY-1
|
||||
jira: uri={{server}} username={{user}} password={{pass}} operation=link
|
||||
linktype=Relate inwardissue=HSP-1 outwardissue=MKY-1
|
||||
jira:
|
||||
uri: '{{ server }}'
|
||||
username: '{{ user }}'
|
||||
password: '{{ pass }}'
|
||||
operation: link
|
||||
linktype: Relate
|
||||
inwardissue: HSP-1
|
||||
outwardissue: MKY-1
|
||||
|
||||
# Transition an issue by target status
|
||||
- name: Close the issue
|
||||
|
||||
Reference in New Issue
Block a user