From f8806950af3085560ee8856e341b6c5d3b9c2aa6 Mon Sep 17 00:00:00 2001 From: Tyler Hall Date: Wed, 16 Mar 2022 12:48:36 +0000 Subject: [PATCH] chore: update action docs and tag-and-release workflow --- .github/workflows/tag-and-release.yml | 2 +- action.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tag-and-release.yml b/.github/workflows/tag-and-release.yml index 5822ebce..9c037d70 100644 --- a/.github/workflows/tag-and-release.yml +++ b/.github/workflows/tag-and-release.yml @@ -20,7 +20,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v2 with: - node-version: 14.x + node-version: 16.x - name: set git user run: | git config --global user.name "${{ github.actor }}" diff --git a/action.yml b/action.yml index 50598ecd..5163bf19 100644 --- a/action.yml +++ b/action.yml @@ -3,7 +3,7 @@ name: 'Bump' description: 'Bump the manifest and generate changelogs' inputs: bump-to: - description: 'semver version to bump to' + description: 'the semver version to bump to ("semver" to bump based on commits)' required: true package: description: 'in a monorepo, package that contains the files to be bumped ie. app-opine -> packages/app-opine' @@ -21,7 +21,7 @@ outputs: version: description: 'The semver version bumped to' tag: - description: 'The git tag created' + description: 'The git tag created, if created. undefined if not created.' runs: using: 'node16' main: 'index.js'