From c040e368c28afadd4755369f31c9b29bb950a790 Mon Sep 17 00:00:00 2001 From: Simone Busoli Date: Wed, 22 Dec 2021 18:04:00 +0100 Subject: [PATCH] chore: semver choice input --- .github/workflows/release.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4a3688b9..7ab7711d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,9 +4,14 @@ on: workflow_dispatch: inputs: semver: - description: 'The semver to use' + description: "The semver to use" required: true - default: 'patch' + default: "patch" + type: choice + options: + - patch + - minor + - major pull_request: types: [closed]