-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dangerfile.df.kts
118 lines (101 loc) · 4.38 KB
/
Dangerfile.df.kts
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
* ISC License
*
* Copyright (c) 2022. Wolf-Martell Montwé (bitfunk)
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
@file:Repository("https://repo.maven.apache.org")
import systems.danger.kotlin.danger
import systems.danger.kotlin.fail
import systems.danger.kotlin.message
import systems.danger.kotlin.onGitHub
import systems.danger.kotlin.warn
danger(args) {
val regexFeatureBranch =
"(?:feature\\/(?:[A-Z]{2,8}-\\d{1,6}\\/)?(?:add|change|remove|fix|bump|security)-[a-z0-9-.]*)"
.toRegex()
val regexReleaseBranch =
"(?:release\\/(?:\\d{1,3}\\.\\d{1,3}(?:\\.\\d{1,3})?)(?:\\/prepare-\\d{1,3}\\.\\d{1,3}\\.\\d{1,3})?)"
.toRegex()
val regexDependabotBranch = "dependabot/(.*)".toRegex()
val regexRenovateBranch = "renovate/(.*)".toRegex()
val regexFeatureTitle =
"(?:(?:\\[[A-Z]{2,8}-\\d{1,6}\\]\\s)?(?:Add|Change|Remove|Fix|Bump|Security)\\s.*)"
.toRegex()
val regexReleaseTitle =
"(?:(?:Prepare )?Release \\d{1,3}\\.\\d{1,3}\\.\\d{1,3})"
.toRegex()
val lineCountInform = 300
val lineCountWarn = 600
val lineCountFail = 1200
val pullRequestBodyMinLines = 20
val allSourceFiles = git.modifiedFiles + git.createdFiles
val isChangelogUpdated = allSourceFiles.contains("CHANGELOG.adoc")
onGitHub {
val branchName = pullRequest.head.label.substringAfter(":")
val isFeatureBranch = regexFeatureBranch.matches(branchName)
val isReleaseBranch = regexReleaseBranch.matches(branchName)
val isDependabotBranch = regexDependabotBranch.matches(branchName)
val isRenovateBranch = regexRenovateBranch.matches(branchName)
val isFeatureTitle = regexFeatureTitle.matches(pullRequest.title)
val isReleaseTitle = regexReleaseTitle.matches(pullRequest.title)
if (!isFeatureBranch && !isReleaseBranch && !isDependabotBranch && !isRenovateBranch) {
fail(
"Branch name is not following our pattern:\n" +
"\nrelease/1.2(.3)(/prepare-1.2.3)\n" +
"\nfeature/(ISSUE-123)/add|change|remove|fix|bump|security-feature-title\n" +
"\n\n" +
"\n Current name: $branchName",
)
}
if (isFeatureBranch) {
if (!isFeatureTitle) {
fail(
"Title is not following our pattern:\n" +
"\n[issue_id](optional) Add|Change|Remove|Fix|Bump|Security {Feature title}",
)
}
}
if (isReleaseBranch) {
if (!isReleaseTitle) {
fail(
"Title is not following our pattern: Prepare Release major.minor.patch (1.2.0)",
)
}
}
// General
if (pullRequest.assignee == null) {
warn("Please assign someone to merge this PR")
}
if (pullRequest.milestone == null) {
warn("Set a milestone please")
}
if (pullRequest.body!!.length < pullRequestBodyMinLines) {
warn("Please include a description of your PR changes")
}
// Changelog
if (!isChangelogUpdated) {
warn("Changes should be reflected in the CHANGELOG.adoc")
}
// Size
val changes = (pullRequest.additions ?: 0) - (pullRequest.deletions ?: 0)
if (changes > lineCountFail) {
fail("This Pull-Request is way to big, please slice it into smaller pull-requests.")
} else if (changes > lineCountWarn) {
warn("Too Big Pull-Request, keep changes smaller!")
} else if (changes > lineCountInform) {
message("Large Pull-Request, try to keep changes smaller if you can")
}
}
}