From 7d1f21730a30ad76a9daf3a887b3c2ee2155ab52 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Sun, 22 Dec 2024 12:40:15 +0100 Subject: [PATCH] prepare release action: Make version input optional The idea is to run the action twice. The first time without a version input. It will generate a CHANGELOG.md update and raises a PR. Then the changelog can be reviewed. based on the categories, the correct new version can be determined and the action can be executed again. --- .github/workflows/prepare_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prepare_release.yml b/.github/workflows/prepare_release.yml index be62784..cf64bd9 100644 --- a/.github/workflows/prepare_release.yml +++ b/.github/workflows/prepare_release.yml @@ -6,7 +6,7 @@ on: inputs: version: description: 'Module version to be released. Must be a valid semver string without leading v. (1.2.3)' - required: true + required: false jobs: release_prep: