diff --git a/schutzbot/Jenkinsfile b/schutzbot/Jenkinsfile index e1f389d..5d5890e 100644 --- a/schutzbot/Jenkinsfile +++ b/schutzbot/Jenkinsfile @@ -120,8 +120,8 @@ pipeline { success { node('schutzbot') { script { - if (env.BRANCH_NAME == 'master') { - telegramSend "💚 CI passed for koji-osbuild master branch ${env.BUILD_URL}" + if (env.BRANCH_NAME == 'main') { + telegramSend "💚 CI passed for koji-osbuild main branch ${env.BUILD_URL}" } } } @@ -129,8 +129,8 @@ pipeline { unsuccessful { node('schutzbot') { script { - if (env.BRANCH_NAME == 'master') { - telegramSend "💣 CI failed for koji-osbuild master branch ${env.BUILD_URL}" + if (env.BRANCH_NAME == 'main') { + telegramSend "💣 CI failed for koji-osbuild main branch ${env.BUILD_URL}" } } }