Skip to content

Commit ac388d7

Browse files
committed
Release name truncation
1 parent c90bec3 commit ac388d7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

server.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,19 @@ queue.process('remover', function (job, done){
4848
// TODO: This could be used in future too: https://github.com/helm/helm/issues/4639
4949
let branchname = job.data.branch.toLowerCase().replace(/[^a-z0-9]/gi,'-');
5050
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) {
5353
branchname = branchname_truncated + '-' + branchname_hash;
5454
}
5555

5656
let reponame = job.data.project.toLowerCase().replace(/[^a-z0-9]/gi,'-');
5757
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(/\-$/, '');
5959

6060
// Pass unshortened repo name as environment variable for the namespace.
6161
process.env.NAMESPACE = reponame;
6262

63-
if (reponame.length >= 25) {
63+
if (reponame.length >= 20) {
6464
reponame = reponame_truncated + '-' + reponame_hash;
6565
}
6666

0 commit comments

Comments
 (0)