该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。
拉取镜像更新于 。
- 4月 02, 2024
-
-
由 Peter Leitzen 创作于
-
- 7月 29, 2023
-
-
由 Nick Nguyen 创作于
-
- 3月 23, 2022
-
-
由 Rémy Coutable 创作于
This will reduce the boilerplate code. Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 2月 28, 2022
-
-
由 Rémy Coutable 创作于
Changelog: other Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 2月 24, 2022
-
-
由 Ash McKenzie 创作于
-
- 12月 03, 2021
-
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 11月 12, 2021
-
-
由 Albert Salim 创作于
-
- 10月 27, 2021
-
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 5月 04, 2021
-
-
由 Rémy Coutable 创作于
This opens up the possibility to actually re-use Danger rules accross projects. Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
由 Heinrich Lee Yu 创作于
This reverts merge request !58130
-
- 4月 28, 2021
-
-
由 Rémy Coutable 创作于
This opens up the possibility to actually re-use Danger rules accross projects. Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 3月 12, 2021
-
-
由 Rémy Coutable 创作于
The gem provides helpers that can be reused by multiple projects. Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 1月 26, 2021
-
-
由 Rémy Coutable 创作于
This is to ensure good hygiene of the feature flag data. See https://gitlab.com/gitlab-org/gitlab/-/issues/294218 and https://gitlab.com/gitlab-org/gitlab/-/issues/299464 . Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 1月 20, 2021
-
-
由 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.
-
- 6月 26, 2020
-
-
由 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.
-
- 5月 26, 2020
-
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 5月 25, 2020
-
-
由 Rémy Coutable 创作于
Signed-off-by:
Rémy Coutable <remy@rymai.me>
-
- 12月 12, 2019
-
-
由 Paul Gascou-Vaillancourt 创作于
- Moved helper methods from Dangerfile into a new Danger plugin - Added tests for all public methods in the plugin
-
- 10月 22, 2019
-
-
由 allison.browne 创作于
-
- 10月 16, 2019
-
-
由 Winnie Hellmann 创作于
-
- 9月 06, 2019
-
-
由 Ash McKenzie 创作于
This class encapsulates our use of the Danger gem.
-
由 Ash McKenzie 创作于
This class encapsulates our use of the Danger gem.
-
由 Ash McKenzie 创作于
This reverts merge request !16168
-
由 Ash McKenzie 创作于
This reverts merge request !32196
-
由 Ash McKenzie 创作于
-
由 Ash McKenzie 创作于
-
- 6月 27, 2019
-
-
由 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
-
- 5月 30, 2019
-
-
由 Lin Jen-Shin 创作于
So it's more modular and extensible
-
- 4月 24, 2019
-
-
由 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.
-
- 4月 04, 2019
-
-
由 Robert Speicher 创作于
-
- 3月 29, 2019
-
-
由 Filipa Lacerda 创作于
-
- 3月 11, 2019
-
-
由 Marin Jankovski 创作于
This extends Danger so it informs MR authors that single codebase merge requests need to be approved by a specific group of engineers. Co-authored-by:
Yorick Peterse <yorickpeterse@gmail.com>
-
- 2月 14, 2019
-
-
由 Nick Thomas 创作于
Make danger pick reviewers and maintainers at random, for feontend, backend, database, etc, changes, whenever files belonging to those teams get changed.
-
- 12月 17, 2018
-
-
由 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.
-
- 10月 22, 2018
-
-
由 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.
-
- 9月 29, 2018
-
-
由 Lukas Eipert 创作于
We disabled a lot of eslint rules on a per-file basis. This checks touched files for those and reminds you to re-enable the rules and fix them.
-
由 Lukas Eipert 创作于
This adds a Dangerfile which executes `prettier` to find out if someone touched Frontend files and forgot to run it on their current branch.
-
- 9月 10, 2018
-
-
由 Yorick Peterse 创作于
This Dangerfile ensures that commit authors write good commit messages. We also prevent the use of Emoji, since these add no value and may not always be displayed properly. Merge commits are currently ignored. In the future we most likely want to stop using these, but this is a separate discussion, hence we ignore them for the time being. The rules enforced by this Dangerfile are based on the article found at https://chris.beams.io/posts/git-commit/. For more information, refer to https://gitlab.com/gitlab-org/gitlab-ce/issues/50003. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/50003
-
- 9月 06, 2018
-
-
由 Achilleas Pipinellis 创作于
Every time a doc change is made, a comment to ping the @gl-docsteam is added.
-
- 7月 24, 2018
-
-
由 gfyoung 创作于
Checks that new Ruby files will enable frozen string literal. Partially addresses #47424.
-