From dc7ad09d90c27078878644b908543ce9b6ddb361 Mon Sep 17 00:00:00 2001 From: ItayTheDar Date: Sat, 22 Jul 2023 23:58:37 +0300 Subject: [PATCH 1/2] remove unnecessary inputs --- .github/workflows/release_beta.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/release_beta.yaml b/.github/workflows/release_beta.yaml index c02431e..b12d278 100644 --- a/.github/workflows/release_beta.yaml +++ b/.github/workflows/release_beta.yaml @@ -5,9 +5,6 @@ on: permissions: users: - ItayTheDar - inputs: - increment_version: - description: 'Create a new beta release, deploy to TestPyPI, and install the package' env: VERSION_FILE_PATH: nest/__init__.py From 058e5c0ddec7d4d11c361a9eb730597768260631 Mon Sep 17 00:00:00 2001 From: ItayTheDar Date: Sun, 23 Jul 2023 00:00:22 +0300 Subject: [PATCH 2/2] add inputs of versions --- .github/workflows/release_beta.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/release_beta.yaml b/.github/workflows/release_beta.yaml index b12d278..75581e7 100644 --- a/.github/workflows/release_beta.yaml +++ b/.github/workflows/release_beta.yaml @@ -5,6 +5,17 @@ on: permissions: users: - ItayTheDar + inputs: + increment_version: + description: 'Increment version by major, minor, or patch' + required: true + default: 'patch' + type: choice + options: + - major + - minor + - patch + env: VERSION_FILE_PATH: nest/__init__.py