Browse Source

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

pull/3042/head
Alessandro Ros 2 years ago committed by GitHub
parent
commit
6e721201ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      .github/workflows/bump_hls_js.yml

4
.github/workflows/bump_hls_js.yml

@ -53,13 +53,13 @@ jobs: @@ -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}`,
});
}

Loading…
Cancel
Save