We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76263e0 commit 69953f7Copy full SHA for 69953f7
Dangerfile.df.kts
@@ -6,11 +6,14 @@ import systems.danger.kotlin.models.github.GitHubIssueLabel
6
danger(args) {
7
if (git.modifiedFiles.any { it.contains("json-schema-validator/api/") }) {
8
markdown(
9
- "## PR introduces changes to the public API<br/>\n" +
+ "## PR introduces changes to the public API\n" +
10
"Please add **\"ABI breaking\"** label if **any line** in API file was changed or deleted.<br/>" +
11
"Please add **\"API breaking\"** label if **any public method** in API file was changed or deleted.",
12
)
13
}
14
+ warn("test warning")
15
+ message("test message")
16
+ fail("test fail")
17
onGitHub {
18
val prLabels = issue.labels
19
checkPrLabels(prLabels)
0 commit comments