-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Dangerfile
47 lines (33 loc) · 1.66 KB
/
Dangerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# frozen_string_literal: true
github.dismiss_out_of_range_messages
# `files: []` forces rubocop to scan all files, not just the ones modified in the PR
# Added a custom `rubocop_cmd` to prevent RuboCop from running using `bundle exec`, which we don't want on the linter agent
rubocop.lint(files: [], force_exclusion: true, inline_comment: true, fail_on_inline_comment: true, include_cop_names: true, rubocop_cmd: ': | rubocop')
manifest_pr_checker.check_gemfile_lock_updated
android_release_checker.check_release_notes_and_play_store_strings
android_strings_checker.check_strings_do_not_refer_resource
# skip remaining checks if we're in a release-process PR
if github.pr_labels.include?('Releases')
message('This PR has the `Releases` label: some checks will be skipped.')
return
end
common_release_checker.check_internal_release_notes_changed(report_type: :message)
android_release_checker.check_modified_strings_on_release
view_changes_checker.check
pr_size_checker.check_diff_size(
max_size: 300,
file_selector: ->(path) { !path.include?('/src/test') }
)
android_unit_test_checker.check_missing_tests
# skip remaining checks if the PR is still a Draft
if github.pr_draft?
message('This PR is still a Draft: some checks will be skipped.')
return
end
labels_checker.check(
do_not_merge_labels: ['Do Not Merge'],
required_labels: [//],
required_labels_error: 'PR requires at least one label.'
)
# runs the milestone check if this is not a WIP feature and the PR is against the main branch or the release branch
milestone_checker.check_milestone_due_date(days_before_due: 4) if (github_utils.main_branch? || github_utils.release_branch?) && !github_utils.wip_feature?