forked from sunshinejr/SwiftyUserDefaults
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dangerfile.swift
34 lines (27 loc) · 1.45 KB
/
Dangerfile.swift
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
import Foundation
import Danger
import DangerSwiftLint // package: https://github.com/ashfurrow/danger-swiftlint.git
let danger = Danger()
let allSourceFiles = danger.git.modifiedFiles + danger.git.createdFiles
let changelogChanged = allSourceFiles.contains("CHANGELOG.md")
let sourceChanges = allSourceFiles.first(where: { $0.hasPrefix("Sources") })
let isTrivial = danger.github.pullRequest.title.contains("#trivial")
if danger.git.createdFiles.count + danger.git.modifiedFiles.count - danger.git.deletedFiles.count > 10 {
warn("Big PR, try to keep changes smaller if you can")
}
if !isTrivial && !changelogChanged && sourceChanges != nil {
warn("""
Any changes to library code should be reflected in the Changelog.
""")
}
if danger.github.pullRequest.title.contains("WIP") {
warn("PR is classed as Work in Progress")
}
let onlyPodspec = allSourceFiles.contains("SwiftyUserDefaults.podspec") && !allSourceFiles.contains("Package.swift")
let onlyPackage = !allSourceFiles.contains("SwiftyUserDefaults.podspec") && allSourceFiles.contains("Package.swift")
if onlyPodspec != onlyPackage {
warn("Only one of either the podspec or SPM package was changed. This might be unintentional – double check.")
}
// Workaround for SwiftLint bug https://github.com/ashfurrow/danger-swiftlint/issues/4
SwiftLint.lint(directory: "Sources", configFile: ".swiftlint.yml")
SwiftLint.lint(directory: "Tests", configFile: "Tests/SwiftyUserDefaultsTests/.swiftlint.yml")