1. 23 2月, 2017 1 次提交
  2. 14 2月, 2017 1 次提交
  3. 07 2月, 2017 5 次提交
  4. 03 2月, 2017 1 次提交
  5. 27 1月, 2017 1 次提交
  6. 26 1月, 2017 1 次提交
  7. 16 1月, 2017 1 次提交
  8. 06 1月, 2017 2 次提交
  9. 05 1月, 2017 3 次提交
  10. 20 12月, 2016 3 次提交
  11. 14 12月, 2016 1 次提交
  12. 12 12月, 2016 1 次提交
    • L
      Not sure why, but apparently SHA works better · c0dfa0c6
      Lin Jen-Shin 提交于
      It's very weird that source_commit.raw_commit and
      rugged.branches[merge_request.target_branch].target
      should be completely the same. I checked with ==
      and other values which proved that both should be
      the same, but still tests cannot pass for:
      spec/services/merge_requests/refresh_service_spec.rb
      
      I decided to give it up. We could just use SHA and
      that works fine anyway.
      c0dfa0c6
  13. 10 12月, 2016 1 次提交
  14. 09 12月, 2016 3 次提交
  15. 08 12月, 2016 8 次提交
  16. 07 12月, 2016 4 次提交
  17. 06 12月, 2016 2 次提交
  18. 28 11月, 2016 1 次提交
    • A
      Pass tag SHA to post-receive hook when tag is created via UI · cf58271e
      Adam Niedzielski 提交于
      We only know the tag SHA after we create the tag.
      This means that we pass a different value to the hooks that happen before
      creating the tag, and a different value to the hooks that happen after
      creating the tag.
      
      This is not an ideal situation, but it is a trade-off we decided to
      make. For discussion of the alternatives please refer to
      https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/7700#note_18982873
      
      "pre-receive" and "update" hooks always get the SHA of the commit
      that the tag points to. "post-receive" gets the tag SHA if it is
      an annotated tag or the commit SHA if it is an lightweight tag.
      Currently we always create annotated tags if UI is used.
      cf58271e