Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upUpdate Jira to include changelog, and update docs #2795
Conversation
This commit updates documentation with link to get API Token (used in lieu of passwords now for Jira Cloud), and adds full Jira Issue changelog details in the created events.
- `timeout` is an optional parameter that specifies how long the request processing may take in minutes. | ||
- The issue's `changelog` is now returned with this Agent. |
dsander
May 22, 2020
Collaborator
Interesting idea to use the Agent description as a changelog. Not really sure how I feel about it, at first I didn't like it, but after thinking about it it kind of makes sense.
If we keep it, I think I would prefer it at the bottom of the description and add a date.
Interesting idea to use the Agent description as a changelog. Not really sure how I feel about it, at first I didn't like it, but after thinking about it it kind of makes sense.
If we keep it, I think I would prefer it at the bottom of the description and add a date.
@@ -84,7 +85,7 @@ def check | |||
|
|||
private | |||
def request_url(jql, start_at) | |||
"#{interpolated[:jira_url]}/rest/api/2/search?jql=#{CGI::escape(jql)}&fields=*all&startAt=#{start_at}" | |||
"#{interpolated[:jira_url]}/rest/api/2/search?jql=#{CGI::escape(jql)}&expand=changelog&fields=*all&startAt=#{start_at}" |
dsander
May 22, 2020
Collaborator
Does the changelog change the shape of the parts of the Event that were already present before this change?
The tests probably need to be adjusted.
Does the changelog change the shape of the parts of the Event that were already present before this change?
The tests probably need to be adjusted.
This commit updates documentation with link to get API Token (used in lieu of passwords now for Jira Cloud), and adds full Jira Issue changelog details in the created events.