forked from Automattic/pocket-casts-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dangerfile
37 lines (26 loc) · 1.2 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
# 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
# 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
view_changes_checker.check
pr_size_checker.check_diff_size(max_size: 500)
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.'
)
milestone_checker.check_milestone_due_date(days_before_due: 2)
warn('PR is classed as Work in Progress') if github_utils.wip_feature?