@@ -48,19 +48,19 @@ queue.process('remover', function (job, done){
48
48
// TODO: This could be used in future too: https://github.com/helm/helm/issues/4639
49
49
let branchname = job . data . branch . toLowerCase ( ) . replace ( / [ ^ a - z 0 - 9 ] / gi, '-' ) ;
50
50
const branchname_hash = crypto . createHash ( 'sha256' ) . update ( branchname ) . digest ( "hex" ) . substring ( 0 , 4 ) ;
51
- const branchname_truncated = branchname . substring ( 0 , 15 ) . replace ( / \- $ / , '' ) ;
52
- if ( branchname . length >= 25 ) {
51
+ const branchname_truncated = branchname . substring ( 0 , 16 ) . replace ( / \- $ / , '' ) ;
52
+ if ( branchname . length >= 20 ) {
53
53
branchname = branchname_truncated + '-' + branchname_hash ;
54
54
}
55
55
56
56
let reponame = job . data . project . toLowerCase ( ) . replace ( / [ ^ a - z 0 - 9 ] / gi, '-' ) ;
57
57
const reponame_hash = crypto . createHash ( 'sha256' ) . update ( reponame ) . digest ( "hex" ) . substring ( 0 , 4 ) ;
58
- const reponame_truncated = reponame . substring ( 0 , 15 ) . replace ( / \- $ / , '' ) ;
58
+ const reponame_truncated = reponame . substring ( 0 , 16 ) . replace ( / \- $ / , '' ) ;
59
59
60
60
// Pass unshortened repo name as environment variable for the namespace.
61
61
process . env . NAMESPACE = reponame ;
62
62
63
- if ( reponame . length >= 25 ) {
63
+ if ( reponame . length >= 20 ) {
64
64
reponame = reponame_truncated + '-' + reponame_hash ;
65
65
}
66
66
0 commit comments