1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-12 14:01:36 +02:00

feat(release-please): now supports large files; introduces fork option (#67)

This commit is contained in:
Benjamin E. Coe
2020-09-17 12:06:02 -07:00
committed by GitHub
parent c50871331b
commit e7d31db926
6 changed files with 182 additions and 119 deletions

View File

@@ -11,6 +11,7 @@ async function main () {
const path = core.getInput('path') ? core.getInput('path') : undefined
const releaseType = core.getInput('release-type')
const token = core.getInput('token')
const fork = core.getInput('fork') ? true : undefined
const changelogTypes = core.getInput('changelog-types')
// Parse the changelogTypes if there are any
@@ -45,6 +46,7 @@ async function main () {
path,
apiUrl: 'https://api.github.com',
repoUrl: process.env.GITHUB_REPOSITORY,
fork,
token: token,
label: RELEASE_LABEL,
bumpMinorPreMajor,