BigW Consortium Gitlab

  1. 26 Jan, 2018 2 commits
  2. 24 Jan, 2018 1 commit
  3. 22 Jan, 2018 1 commit
  4. 19 Jan, 2018 2 commits
  5. 17 Jan, 2018 1 commit
  6. 14 Jan, 2018 1 commit
    • Ensure CI pipelines and builds have the correction project associations · 8ddb00ad
      Stan Hu authored
      This should reduce the number of SQL queries and lookups needed to look up a
      project of a build and pipeline and vice versa.
      
      Before:
      
      ```
      [1] pry(main)> Ci::Build.reflect_on_association(:project).has_inverse?
      => false
      [2] pry(main)> Project.reflect_on_association(:builds).has_inverse?
      => false
      [3] pry(main)> Ci::Pipeline.reflect_on_association(:project).has_inverse?
      => false
      [4] pry(main)> Project.reflect_on_association(:pipelines).has_inverse?
      => :project
      ```
      
      After:
      
      ```
      [1] pry(main)> Ci::Build.reflect_on_association(:project).has_inverse?
      => :builds
      [2] pry(main)> Project.reflect_on_association(:builds).has_inverse?
      => :project
      [3] pry(main)> Ci::Pipeline.reflect_on_association(:project).has_inverse?
      => :pipelines
      [4] pry(main)> Project.reflect_on_association(:pipelines).has_inverse?
      => :project
      ```
  7. 12 Jan, 2018 1 commit
  8. 11 Jan, 2018 1 commit
  9. 09 Jan, 2018 1 commit
  10. 06 Jan, 2018 1 commit
  11. 04 Jan, 2018 4 commits
  12. 03 Jan, 2018 6 commits
  13. 22 Dec, 2017 2 commits
  14. 20 Dec, 2017 1 commit
  15. 12 Dec, 2017 2 commits
  16. 07 Dec, 2017 1 commit
  17. 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
  18. 04 Dec, 2017 2 commits
  19. 01 Dec, 2017 2 commits
  20. 28 Nov, 2017 6 commits
  21. 27 Nov, 2017 1 commit