Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
feat(deps): latest version of release-please (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Dec 1, 2020
1 parent a546b36 commit 5469575
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 48 deletions.
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -45,7 +45,6 @@ Automate releases with Conventional Commit Messages.
| `changelog-types` | A JSON formatted String containing to override the outputted changlog sections |
| `version-file` | provide a path to a version file to increment (used by ruby releaser) |
| `fork` | Should the PR be created from a fork (does not work with `secrets.GITHUB_TOKEN`) |
| `clean` | Should stale release PRs be closed post release? Default `true` |
| `command` | release-please command to run, either `github-release`, or `release-pr` (_defaults to running both_) |

| output | description |
Expand Down
3 changes: 0 additions & 3 deletions index.js
Expand Up @@ -7,8 +7,6 @@ const RELEASE_LABEL = 'autorelease: pending'
async function main () {
const bumpMinorPreMajor = Boolean(core.getInput('bump-minor-pre-major'))
// TODO(bcoe): remove this log line.
console.info(typeof core.getInput('clean'), core.getInput('clean'))
const clean = core.getInput('clean') !== 'false'
const monorepoTags = Boolean(core.getInput('monorepo-tags'))
const packageName = core.getInput('package-name')
const path = core.getInput('path') ? core.getInput('path') : undefined
Expand Down Expand Up @@ -50,7 +48,6 @@ async function main () {
// release PR:
if (!command || command === 'release-pr') {
const release = releasePlease.getReleasePRFactory().buildStatic(releaseType, {
clean,
monorepoTags,
packageName,
path,
Expand Down
105 changes: 62 additions & 43 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -26,7 +26,7 @@
"homepage": "https://github.com/bcoe/release-please-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"release-please": "^7.0.0-candidate.2"
"release-please": "^7.0.0-candidate.3"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
Expand Down

0 comments on commit 5469575

Please sign in to comment.