You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let editedFiles = danger.git.modifiedFiles + danger.git.createdFiles
message("These files have changed: \(editedFiles.joined(separator: ", "))")
var bigPRThreshold = 600
if danger.github.pullRequest.additions! + danger.github.pullRequest.deletions! > bigPRThreshold {
warn("Pull Request size seems relatively large. If this Pull Request contains multiple changes,please split each into separate PR will helps faster, easier review.")