Merge commit 'd8b6e1daf998761102843e093215a409dbeb524c'

This commit is contained in:
Stefan Reimer 2023-08-08 10:43:40 +00:00
commit 205881747d
1 changed files with 7 additions and 0 deletions

View File

@ -68,6 +68,13 @@ def call(Map config=[:]) {
}
}
// Basic registry retention removing untagged images
stage('cleanup') {
when { not { changeRequest() } }
steps {
sh 'make rm-remote-untagged'
}
}
}
}
}