Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 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
  2. 5月 26, 2020
  3. 5月 25, 2020
  4. 12月 12, 2019
  5. 10月 22, 2019
  6. 10月 16, 2019
  7. 9月 06, 2019
  8. 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
  9. 5月 30, 2019
  10. 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
  11. 4月 04, 2019
  12. 3月 29, 2019
  13. 3月 11, 2019
  14. 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
  15. 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
  16. 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
  17. 9月 29, 2018
  18. 9月 10, 2018
  19. 9月 06, 2018
  20. 7月 24, 2018
  21. 7月 11, 2018
加载中