Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 4月 02, 2024
  2. 7月 29, 2023
  3. 3月 23, 2022
  4. 2月 28, 2022
  5. 2月 24, 2022
  6. 12月 03, 2021
  7. 11月 12, 2021
  8. 10月 27, 2021
  9. 5月 04, 2021
  10. 4月 28, 2021
  11. 3月 12, 2021
  12. 1月 26, 2021
  13. 1月 20, 2021
    • Albert Salim's avatar
      Remove conditional require lines · 4ec103c6
      Albert Salim 创作于
      These were added because of Rails eagerload.
      These files are now moved out of Rails eagerload path,
      so the conditionals are not necessary.
      4ec103c6
  14. 6月 26, 2020
    • Sean McGivern's avatar
      Add a Danger message when Sidekiq queues change · e4edc69e
      Sean McGivern 创作于
      When Sidekiq queues are added, or existing queues are changed, this can
      have some impact on our infrastructure as we may have a change in
      workload that leads to us needing to make an infrastructure change.
      
      The Scalability team can help with this, so point to them as a first
      step.
      e4edc69e
  15. 5月 26, 2020
  16. 5月 25, 2020
  17. 12月 12, 2019
  18. 10月 22, 2019
  19. 10月 16, 2019
  20. 9月 06, 2019
  21. 6月 27, 2019
    • Lukas Eipert's avatar
      Add a danger rule to suggest `docs-` prefixes · 068d6baa
      Lukas Eipert 创作于
      If an MR only changes files within `doc/` we can save valueable CI time
      by prepending a branch name with `docs-`. This danger rule helps educate
      people about that fact.
      
      On the other hand, if someone has a branch with a `docs` prefix or
      suffix, the branch shouldn't contain any changes outside of the `docs`
      directory
      068d6baa
  22. 5月 30, 2019
  23. 4月 24, 2019
    • Nathan Friend's avatar
      Add Danger rule for EE/CE templates · c3268a6a
      Nathan Friend 创作于
      This commit adds a rule to Danger that warns the developer when their MR
      includes changes to a CE .vue file that has a counterpart in the
      EE repo or vice-versa.
      c3268a6a
  24. 4月 04, 2019
  25. 3月 29, 2019
  26. 3月 11, 2019
  27. 2月 14, 2019
    • Nick Thomas's avatar
      Reviewer roulette via Danger · 77b2ecd2
      Nick Thomas 创作于
      Make danger pick reviewers and maintainers at random, for feontend,
      backend, database, etc, changes, whenever files belonging to those
      teams get changed.
      77b2ecd2
  28. 12月 17, 2018
    • Lukas Eipert's avatar
      Add danger check for duplicate yarn dependencies · 243bd56f
      Lukas Eipert 创作于
      This danger check utilises `yarn-deduplicate` in order to show duplicate
      dependencies in the yarn.lock dependency tree.
      Often when introducing new dependencies or updating existing ones, yarn
      does not seem to build the most optimal dependency tree.
      
      In order to prevent those unnecessary dependency updates we are nudging
      developers and maintainers to resolve these issues in MRs. Automating
      this with danger especially helps, as yarn.lock files are not that easy
      to review.
      243bd56f
  29. 10月 22, 2018
    • Lukas Eipert's avatar
      Create helper to get all changed files · 253e1818
      Lukas Eipert 创作于
      Danger apparently has three different objects which could contain files
      you often want to check:
      
       - git.added_files
       - git.modified_files
       - git.renamed_files
      
      The problem: If a file is renamed, `modified_files` contains the file
      path before the rename. In some Danger checks we use `added_files` +
      `modified_files`, which might contain the deleted paths of renamed
      files, but missing the new paths of renamed files.
      
      So we need to consider `renamed_files` as well.
      253e1818
  30. 9月 29, 2018
  31. 9月 10, 2018
  32. 9月 06, 2018
  33. 7月 24, 2018
加载中