Skip to content

Commit

Permalink
NEXT-10676 - Fix jira query
Browse files Browse the repository at this point in the history
  • Loading branch information
pweyck committed Sep 21, 2020
1 parent 1e1a608 commit f41e031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .gitlab-ci/tools/src/Service/ChangelogService.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public function fetchFixedIssues(string $version)
'Content-Type' => 'application/json',
],
'query' => [
'jql' => sprintf('project=\'NEXT\' AND status=Resolved AND resolution=fixed AND fixVersion=\'%s\' AND cf[10202]=Yes ORDER BY key ASC', $version),
'jql' => sprintf('project=\'NEXT\' AND status=Resolved AND resolution=done AND fixVersion=\'%s\' AND cf[10202]=Yes ORDER BY key ASC', $version),
'fields' => 'id,key,customfield_11901,customfield_11900,customfield_12101,customfield_12100',
'maxResults' => 1000
],
Expand Down

0 comments on commit f41e031

Please sign in to comment.