From 6e721201edc391da4d86248ffa3e292dfed7d116 Mon Sep 17 00:00:00 2001 From: Alessandro Ros Date: Sun, 18 Feb 2024 17:42:27 +0100 Subject: [PATCH] remove double 'v' from hls.js bump messages (#3040) --- .github/workflows/bump_hls_js.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bump_hls_js.yml b/.github/workflows/bump_hls_js.yml index 583894cb..a0d5ccd4 100644 --- a/.github/workflows/bump_hls_js.yml +++ b/.github/workflows/bump_hls_js.yml @@ -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}`, }); }