mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
18 lines
350 B
JavaScript
18 lines
350 B
JavaScript
module.exports = function (context, github) {
|
|
const owner = context.repo.owner
|
|
const repo = context.repo.repo
|
|
const base = 'main'
|
|
const head = 'release'
|
|
const title = 'new version published: ' + process.env.RELEASED_VERSION
|
|
const body = ''
|
|
github.rest.pulls.create({
|
|
owner,
|
|
repo,
|
|
base,
|
|
head,
|
|
title,
|
|
body
|
|
})
|
|
|
|
}
|