remove double 'v' from hls.js bump messages (#3040)

This commit is contained in:
Alessandro Ros 2024-02-18 17:42:27 +01:00 committed by GitHub
parent 679bad7fbf
commit 6e721201ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -53,13 +53,13 @@ jobs:
repo: context.repo.repo,
head: 'deps/hlsjs',
base: context.ref.slice('refs/heads/'.length),
title: `bump hls-js to v${process.env.VERSION}`,
title: `bump hls-js to ${process.env.VERSION}`,
});
} else {
github.rest.pulls.update({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: prs.data[0].number,
title: `bump hls-js to v${process.env.VERSION}`,
title: `bump hls-js to ${process.env.VERSION}`,
});
}