From 41fbc62bb12a4b0ff33a3ae5f401acc3d1bf3b7f Mon Sep 17 00:00:00 2001 From: "Benjamin E. Coe" Date: Mon, 27 Jul 2020 17:28:52 -0700 Subject: [PATCH] fix: add missing path and monorepo-tags options (#52) --- action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/action.yml b/action.yml index b54ecbf..029e213 100644 --- a/action.yml +++ b/action.yml @@ -14,6 +14,12 @@ inputs: bump-minor-pre-major: description: 'should breaking changes before 1.0.0 produce minor bumps' required: false + path: + description: "create a release from a path other than the repository's root" + required: false + monorepo-tags: + description: 'add prefix to tags and branches, allowing multiple libraries to be released from the same repository' + required: false runs: using: 'node12' main: 'dist/index.js'