CI: Handle [ci skip] keyword
gitea/ansible-roles/pipeline/head Something is wrong with the build of this commit Details

This commit is contained in:
David Prevot 2022-08-01 10:33:18 +02:00
parent a91479a1b0
commit 70225180eb
1 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,12 @@ pipeline {
}
stages {
stage('Check commit message') {
steps {
scmSkip(deleteBuild: true, skipPattern:'.*\\[ci skip\\].*')
}
}
stage('Build tagged docker image') {
when {
buildingTag()