master → main

This commit is contained in:
Lars Karlitski 2020-11-13 11:42:46 +01:00
parent bf86e8ad79
commit f3b56cc305
4 changed files with 8 additions and 8 deletions

View file

@ -284,8 +284,8 @@ pipeline {
success {
node('schutzbot') {
script {
if (env.BRANCH_NAME == 'master') {
telegramSend "💚 CI passed for osbuild-composer master branch ${env.BUILD_URL}"
if (env.BRANCH_NAME == 'main') {
telegramSend "💚 CI passed for osbuild-composer main branch ${env.BUILD_URL}"
}
}
}
@ -293,8 +293,8 @@ pipeline {
unsuccessful {
node('schutzbot') {
script {
if (env.BRANCH_NAME == 'master') {
telegramSend "💣 CI failed for osbuild-composer master branch ${env.BUILD_URL}"
if (env.BRANCH_NAME == 'main') {
telegramSend "💣 CI failed for osbuild-composer main branch ${env.BUILD_URL}"
}
}
}