-
Notifications
You must be signed in to change notification settings - Fork 43
/
Dangerfile
25 lines (21 loc) · 931 Bytes
/
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
# Make it more obvious that a PR is a work in progress and shouldn't be merged yet
warn("PR is classed as Work in Progress") if github.pr_title.include? "[WIP]"
# Warn when there is a big PR
warn("Big PR") if git.lines_of_code > 500
# General
failure "Please provide a summary in the Pull Request description" if github.pr_body.length < 5
warn "This PR does not have any assignees yet." unless github.pr_json["assignee"]
can_merge = github.pr_json["mergeable"]
warn("This PR cannot be merged yet.", sticky: false) unless can_merge
github.dismiss_out_of_range_messages
# AndroidLint
lint_dir = "**/reports/lint-results*.xml"
Dir[lint_dir].each do |file_name|
android_lint.skip_gradle_task = true
android_lint.filtering = true
android_lint.report_file = file_name
android_lint.lint(inline_mode: true)
end
# CheckstyleFormat
checkstyle_format.base_path = Dir.pwd
checkstyle_format.report 'build/reports/detekt/detekt.xml'