Skip to content

Commit 5469575

Browse files
author
Benjamin E. Coe
authored
feat(deps): latest version of release-please (#122)
1 parent a546b36 commit 5469575

4 files changed

Lines changed: 63 additions & 48 deletions

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ Automate releases with Conventional Commit Messages.
4545
| `changelog-types` | A JSON formatted String containing to override the outputted changlog sections |
4646
| `version-file` | provide a path to a version file to increment (used by ruby releaser) |
4747
| `fork` | Should the PR be created from a fork (does not work with `secrets.GITHUB_TOKEN`) |
48-
| `clean` | Should stale release PRs be closed post release? Default `true` |
4948
| `command` | release-please command to run, either `github-release`, or `release-pr` (_defaults to running both_) |
5049

5150
| output | description |

index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ const RELEASE_LABEL = 'autorelease: pending'
77
async function main () {
88
const bumpMinorPreMajor = Boolean(core.getInput('bump-minor-pre-major'))
99
// TODO(bcoe): remove this log line.
10-
console.info(typeof core.getInput('clean'), core.getInput('clean'))
11-
const clean = core.getInput('clean') !== 'false'
1210
const monorepoTags = Boolean(core.getInput('monorepo-tags'))
1311
const packageName = core.getInput('package-name')
1412
const path = core.getInput('path') ? core.getInput('path') : undefined
@@ -50,7 +48,6 @@ async function main () {
5048
// release PR:
5149
if (!command || command === 'release-pr') {
5250
const release = releasePlease.getReleasePRFactory().buildStatic(releaseType, {
53-
clean,
5451
monorepoTags,
5552
packageName,
5653
path,

package-lock.json

Lines changed: 62 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"homepage": "https://github.com/bcoe/release-please-action#readme",
2727
"dependencies": {
2828
"@actions/core": "^1.2.6",
29-
"release-please": "^7.0.0-candidate.2"
29+
"release-please": "^7.0.0-candidate.3"
3030
},
3131
"devDependencies": {
3232
"@zeit/ncc": "^0.22.3",

0 commit comments

Comments
 (0)