summaryrefslogtreecommitdiff
path: root/lib/gitlab/github_import
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-12-01 00:03:12 -0200
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-12-01 00:03:12 -0200
commit8ca040d8ae66be461f61f52673a87022e6c84204 (patch)
treeab09b2b7588ddf533c4f76f81bfc1ed088c9cb32 /lib/gitlab/github_import
parent24e5a1e8db943be346b4f7f4fb49326ad0e5eb9e (diff)
downloadgitlab-ce-8ca040d8ae66be461f61f52673a87022e6c84204.tar.gz
Fix branch validation for GitHub PR where repo/fork was renamed/deleted
Diffstat (limited to 'lib/gitlab/github_import')
-rw-r--r--lib/gitlab/github_import/branch_formatter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/github_import/branch_formatter.rb b/lib/gitlab/github_import/branch_formatter.rb
index 4750675ae9d..0a8d05b5fe1 100644
--- a/lib/gitlab/github_import/branch_formatter.rb
+++ b/lib/gitlab/github_import/branch_formatter.rb
@@ -8,7 +8,7 @@ module Gitlab
end
def valid?
- repo.present?
+ sha.present? && ref.present?
end
private