BigW Consortium Gitlab

  1. 11 Dec, 2017 1 commit
    • Use message body for merge request description · b39b5524
      Jan Provaznik authored
      When a merge request is created from email, use message body
      as merge request description. If message body is empty then
      merge request description is still created from the source
      branch commit (if there is only single commit in the merge
      request).
      
      If message body is empty and there are multiple commits in
      the source branch, then merge request description is left empty.
      
      Closes #40968
  2. 07 Dec, 2017 1 commit
    • Clean test path between merge request handler tests · b2e0f609
      Jan Provaznik authored
      create_merge_request_handler_spec needs a repository for some tests but
      this repository lasts on disk by default which causes failures of other
      tests. TestEnv.clean_test_path is used to get rid of the repository
      after each test.
      
      Closes #40900
  3. 05 Dec, 2017 1 commit
    • Create merge request from email · 8cce7073
      Jan Provaznik authored
      * new merge request can be created by sending an email to the specific
      email address (similar to creating issues by email)
      * for the first iteration, source branch must be specified in the mail
      subject, other merge request parameters can not be set yet
      * user should enable "Receive notifications about your own activity" in
      user settings to receive a notification about created merge request
      
      Part of #32878