1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-02-25 02:46:01 +01:00

Do not check TC email

This commit is contained in:
Alex Plate 2021-05-17 18:09:10 +03:00
parent 4abc72f05a
commit 315af4cd5b
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F

View File

@ -1,4 +1,3 @@
import dev.feedforward.authorsupdate.UpdateAuthors
import dev.feedforward.markdownto.DownParser
import io.gitlab.arturbosch.detekt.Detekt
@ -15,7 +14,7 @@ buildscript {
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0")
classpath("com.github.AlexPl292:mark-down-to-slack:1.1.2")
classpath("com.github.AlexPl292:authors-update:0.0.6")
classpath("com.github.AlexPl292:authors-update:0.0.7")
}
}
@ -258,6 +257,10 @@ tasks.register("slackNotification") {
tasks.register("updateAuthors") {
doLast {
UpdateAuthors().update(".", updateAuthorsToken)
val uncheckedEmails = setOf(
"aleksei.plate@jetbrains.com",
"aleksei.plate@teamcity"
)
UpdateAuthors().update(".", updateAuthorsToken, uncheckedEmails)
}
}