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
2020-12-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-24Only assign merge params when allowedBob Van Landuyt
When a user updates a merge request coming from a fork, they should not be able to set `force_remove_source_branch` if they cannot push code to the source project. Otherwise developers of the target project could remove the source branch of the source project by setting this flag through the API.
2019-10-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-05Split AutoMergeService interfaces into two `cancel` and `abort`Shinya Maeda
Create explicit endpoint - abort.
2019-07-04Fix MWPS system notes shows inconsistent shaShinya Maeda
Fix the system note service
2019-06-12Update merge options for auto merge strategiesShinya Maeda
Currently, merge options is updated on #execute method, however, we should have #update interface to make it explicit.
2019-06-10Notify when auto merge is enabledShinya Maeda
There are bunch of auto merge related notifications, and when auto merge is enabled, it should be evaluated immediately.
2019-06-06Create BaseService for Auto Merge architectureShinya Maeda
It abstracts some codes for common methods in AutoMerge::*Services.
2019-06-03Abstract auto merge processesShinya Maeda
We have one auto merge strategy today - Merge When Pipeline Succeeds. In order to add more strategies for Merge Train feature, we abstract the architecture to be more extensible. Removed arguments Fix spec