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:
2
index.js
2
index.js
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user