Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-05-04Backport of multiple_assignees_feature [ci skip]Valery Sizov
2017-04-03Rename skip_metrics to imported on the importable concernDouglas Barbosa Alexandre
2017-04-03Skip MR metrics when importing projects from GitHubDouglas Barbosa Alexandre
2017-04-03Fetch GitHub project as a mirror to get all refs at onceDouglas Barbosa Alexandre
2017-04-03Minor refactorGabriel Mazetto
2017-04-03Fix BrachFormatter for removed usersDouglas Barbosa Alexandre
2017-04-03One more change to the branch names to preserve metadataGabriel Mazetto
2017-04-03Prefixes source branch name with short SHA to avoid collisionDouglas Barbosa Alexandre
2017-04-03Fix GitHub importer for PRs of deleted forked repositoriesGabriel Mazetto
2017-03-10Using guard clause and added more specsGabriel Mazetto
2017-03-10Fix GitHub Import for open PRs from a forkGabriel Mazetto
2017-03-08Refactor some codeGabriel Mazetto
2017-03-08Fix name colision when importing GitHub pull requests from forked repositoriesGabriel Mazetto
2017-03-07Fix 'Object not found - no match for id (sha)' when importing GitHub PRsDouglas Barbosa Alexandre
2017-02-23Revert "Enable Style/DotPosition"Douwe Maan
This reverts commit e00fb2bdc2090e9cabeb1eb35a2672a882cc96e9. # Conflicts: # .rubocop.yml # .rubocop_todo.yml # lib/gitlab/ci/config/entry/global.rb # lib/gitlab/ci/config/entry/jobs.rb # spec/lib/gitlab/ci/config/entry/factory_spec.rb # spec/lib/gitlab/ci/config/entry/global_spec.rb # spec/lib/gitlab/ci/config/entry/job_spec.rb # spec/lib/gitlab/ci/status/build/factory_spec.rb # spec/lib/gitlab/incoming_email_spec.rb
2017-02-23Revert "Prefer leading style for Style/DotPosition"Douwe Maan
This reverts commit cb10b725c8929b8b4460f89c9d96c773af39ba6b.
2017-02-23Enable Rails/DelegateDouwe Maan
2017-02-23Prefer leading style for Style/DotPositionDouwe Maan
2017-02-23Enable Performance/RedundantMergeDouwe Maan
2017-02-23Enable Style/DotPositionDouwe Maan
2017-02-20Reuse User#find_by_any_email on UserFormatter#find_by_emailDouglas Barbosa Alexandre
2017-02-20Use leading periods on UserFormatter#find_by_external_uidDouglas Barbosa Alexandre
2017-02-20Add a simple cache for Gitlab::GithubImport::Client#userDouglas Barbosa Alexandre
2017-02-20GitHub Importer - Find users based on their email addressDouglas Barbosa Alexandre
The returned email by the GitHub API is the user's publicly visible email address (or null if the user has not specified a public email address in their profile)
2017-02-15Merge branch 'fix-github-import-MR-wrong-project' into 'security' Robert Speicher
Fix labels being applied to wrong merge requests on GitHub import See https://dev.gitlab.org/gitlab/gitlabhq/merge_requests/2064
2017-01-23Revert "Merge branch 'revert-9cac0317' into 'master' "Grzegorz Bizon
This reverts commit c20934869f7dc8cfbdbafb6ecb7b1305452c9e8a, reversing changes made to 4b7ec44b91e0571d209c790d54947ba1756dac0e.
2017-01-22Revert "Merge branch 'dont-persist-application-settings-in-test-env' into ↵Grzegorz Bizon
'master'" This reverts merge request !8573
2017-01-15Don't persist ApplicationSetting in test envRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-12-19Add Project#gitea_import?Rémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-12-19Modify GithubImport to support GiteaRémy Coutable
The reason is that Gitea plan to be GitHub-compatible so it makes sense to just modify GitHubImport a bit for now, and hopefully we can change it to GitHubishImport once Gitea is 100%-compatible. Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-12-19Gogs ImporterKim "BKC" Carlbäcker
2016-12-01Fix branch validation for GitHub PR where repo/fork was renamed/deletedDouglas Barbosa Alexandre
2016-11-18Refactor github import to reduce number of API callsAndrew Smith
Ref #24073
2016-11-04Cache imported GH labels no matter whatAhmad Sherif
2016-11-04Fix applying GitHub-imported labels when importing job is interruptedAhmad Sherif
Closes #24075
2016-10-28Merge branch 'adam-fix-labels-find-or-create' into 'master' Douwe Maan
Pass user instance to Labels::FindOrCreateService or skip_authorization: true ## What does this MR do? It fixes a bug described in #23694 when `project.owner` was passed to `Labels::FindOrCreateService`. `Labels::FindOrCreateService` expected a user instance and `project.owner` may return a group as well. This MR makes sure that we either pass a user instance or `skip_authorization: true`. ## Are there points in the code the reviewer needs to double check? - places where we pass `skip_authorization: true` ## Does this MR meet the acceptance criteria? - Tests - [x] Added for this feature/bug - [ ] All builds are passing - [ ] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if it does - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? Fixes #23694 See merge request !7093
2016-10-28Pass user instance to Labels::FindOrCreateService or skip_authorization: trueAdam Niedzielski
Do not pass project.owner because it may return a group and Labels::FindOrCreateService throws an error in this case. Fixes #23694.
2016-10-28Fix typosAhmad Sherif
2016-10-28Abstract the use of imported[!?] and {current,increment}_page in GitHub importerAhmad Sherif
2016-10-28Use public_send instead of sendAhmad Sherif
2016-10-28Modify GitHub importer to be retryableAhmad Sherif
2016-10-27Fix importing MR comments from GitHubAhmad Sherif
2016-10-27Fix applying labels for GitHub-imported MRsAhmad Sherif
2016-10-19Rename Labels::CreateService to Labels::FindOrCreateServiceDouglas Barbosa Alexandre
2016-10-19Fix GitHub importer specDouglas Barbosa Alexandre
2016-10-19User Labes::CreateService to create labelsDouglas Barbosa Alexandre
2016-10-06Fix broken handling of certain calls in GitHub importer clientAhmad Sherif
Closes #22998
2016-10-04Skip wiki creation when GitHub project has wiki enabledDouglas Barbosa Alexandre
If the GitHub project repository has wiki, we should not create the default wiki. Otherwise the GitHub importer will fail because the wiki repository already exist. This bug was introduced here https://gitlab.com/gitlab-org/gitlab-ce/commit/892dea67717c0efbd6a28f763 9f34535ec0a8747
2016-09-27Call after_remove_branch only once after importing all GitHub PRsAhmad Sherif
2016-09-27Import all GitHub comments after importing issues and PRsAhmad Sherif