We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jira REST API allows posting of Interal notes (as opposed to public comments) by setting property sd.public.comment, e.g.:
sd.public.comment
{ "properties": [ { "key": "sd.public.comment", "value": { "internal": true } } ], "body": { "type": "doc", "version": 1, "content": [ { "type": "paragraph", "content": [ { "text": "This comment is only visible internally", "type": "text" } ] } ] } }
It would be useful to augment this to jiraComment. Ideally in my pipeline I could do:
jiraComment
jiraComment issueKey: "PROJECT-1", body: "This comment is only visible for internal users", internal: true
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Dependencies
Feature Request
Jira REST API allows posting of Interal notes (as opposed to public comments) by setting property
sd.public.comment
, e.g.:It would be useful to augment this to
jiraComment
. Ideally in my pipeline I could do:The text was updated successfully, but these errors were encountered: