Skip to content
Snippets Groups Projects
Commit 4a203aab authored by Hiroyuki Sato's avatar Hiroyuki Sato
Browse files

Fix wrong order of issues when importing from github

parent 9f166a86
No related branches found
No related tags found
1 merge request!898Fix wrong order of issues when importing from github
Please view this file on the master branch, on stable branches it's out of date.
 
v 7.13.0 (unreleased)
- Fix order of issues imported form GitHub (Hiroyuki Sato)
- Fix Merge Request webhook to properly fire "merge" action when accepted from the web UI
- Add `two_factor_enabled` field to admin user API (Stan Hu)
- Fix invalid timestamps in RSS feeds (Rowan Wookey)
Loading
Loading
Loading
Loading
@@ -11,7 +11,9 @@ module Gitlab
 
def execute
#Issues && Comments
client.list_issues(project.import_source, state: :all).each do |issue|
client.list_issues(project.import_source, state: :all,
sort: :created,
direction: :asc).each do |issue|
if issue.pull_request.nil?
 
body = @formatter.author_line(issue.user.login, issue.body)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment