diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-14 12:09:03 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-14 12:09:03 +0000 |
commit | 5366964a10484c2783a646b35a6da9eece01b242 (patch) | |
tree | 4a5a7a289d44e63d96a50a6a64db6e16b871f19c /danger | |
parent | 733befe96ad19f5a02e442c4a9cc8059d3aabbda (diff) | |
download | gitlab-ce-5366964a10484c2783a646b35a6da9eece01b242.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'danger')
-rw-r--r-- | danger/roulette/Dangerfile | 4 | ||||
-rw-r--r-- | danger/single_codebase/Dangerfile | 63 |
2 files changed, 1 insertions, 66 deletions
diff --git a/danger/roulette/Dangerfile b/danger/roulette/Dangerfile index f0e5c668cb8..d07d652e601 100644 --- a/danger/roulette/Dangerfile +++ b/danger/roulette/Dangerfile @@ -68,11 +68,9 @@ categories = changes.keys - [:unknown] # Ensure to spin for database reviewer/maintainer when ~database is applied (e.g. to review SQL queries) categories << :database if gitlab.mr_labels.include?('database') && !categories.include?(:database) -# Single codebase MRs are reviewed using a slightly different process, so we -# disable the review roulette for such MRs. # CSS Clean up MRs are reviewed using a slightly different process, so we # disable the review roulette for such MRs. -if changes.any? && !gitlab.mr_labels.include?('single codebase') && !gitlab.mr_labels.include?('CSS cleanup') +if changes.any? && !gitlab.mr_labels.include?('CSS cleanup') # Strip leading and trailing CE/EE markers canonical_branch_name = roulette.canonical_branch_name(gitlab.mr_json['source_branch']) diff --git a/danger/single_codebase/Dangerfile b/danger/single_codebase/Dangerfile deleted file mode 100644 index f371a42e9b1..00000000000 --- a/danger/single_codebase/Dangerfile +++ /dev/null @@ -1,63 +0,0 @@ -FRONTEND_MAINTAINERS = %w[filipa iamphill].freeze -BACKEND_MAINTAINERS = %w[rspeicher rymai yorickpeterse godfat].freeze -NO_REVIEWER = 'No reviewer available'.freeze - -def mention_single_codebase_approvers - canonical_branch_name = - roulette.canonical_branch_name(gitlab.mr_json['source_branch']) - - random = roulette.new_random(canonical_branch_name) - - frontend_maintainers = helper.new_teammates(FRONTEND_MAINTAINERS) - backend_maintainers = helper.new_teammates(BACKEND_MAINTAINERS) - - rows = [] - - if gitlab.mr_labels.include?('frontend') - frontend_maintainer = - roulette.spin_for_person(frontend_maintainers, random: random) - - rows << "| ~frontend | #{frontend_maintainer&.markdown_name || NO_REVIEWER}" - end - - if gitlab.mr_labels.include?('backend') - backend_maintainer = - roulette.spin_for_person(backend_maintainers, random: random) - - rows << "| ~backend | #{backend_maintainer&.markdown_name || NO_REVIEWER}" - end - - if rows.empty? - backup_maintainer = backend_maintainers.sample - - rows << "| ~frontend / ~backend | #{backup_maintainer.markdown_name}" - end - - markdown(<<~MARKDOWN.strip) - ## Single codebase changes - - This merge request contains changes related to the work of moving towards a - [single codebase](https://gitlab.com/groups/gitlab-org/-/epics/802) for - Community Edition and Enterprise Edition. These changes will need to be - reviewed and approved by the following engineers: - - | Category | Reviewer - |----------|--------- - #{rows.join("\n")} - - To make sure this happens, please follow these steps: - - 1. Add all of the mentioned users to the list of merge request approvals. - 2. Assign the merge request to the first person in the above list. - - If you are a reviewer, please follow these steps: - - 1. Review the merge request. If it is good to go, approve it. - 2. Once approved, assign to the next person in the above list. If you are - the last person in the list, merge the merge request. - MARKDOWN -end - -if gitlab.mr_labels.include?('single codebase') - mention_single_codebase_approvers -end |