From a08f9b8082efbea8e283b261091fa779ba176479 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Helgi=20M=C3=B6ller?= Date: Mon, 21 Jul 2025 14:17:01 +0000 Subject: [PATCH 1/2] feat(get-next-version): added extra plugins to our semantic-release pipelines this is to provide us with conventional commits and customizing things per user of the workflow(s) --- .github/actions/get-next-version/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/get-next-version/action.yml b/.github/actions/get-next-version/action.yml index 1ebe0e6..7523d20 100644 --- a/.github/actions/get-next-version/action.yml +++ b/.github/actions/get-next-version/action.yml @@ -5,6 +5,9 @@ inputs: github_token: description: 'Github token' required: true + extra_plugins: + required: false + description: 'Extra plugins for pre-install. You can also specify specifying version range for the extra plugins if you prefer.' outputs: last_release_version: @@ -29,5 +32,6 @@ runs: with: dry_run: true semantic_version: 24.2.3 + extra_plugins: ${{ inputs.extra_plugins }} env: GITHUB_TOKEN: ${{ inputs.github_token }} From fdfbbd2a7ebf73a43cb38488b36d2391cf606955 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Helgi=20M=C3=B6ller?= Date: Mon, 21 Jul 2025 14:33:01 +0000 Subject: [PATCH 2/2] feat(github-release): Added extra plugins as an input to github release we want to provide users of the workflow/action the means of adding packages --- .github/actions/github-release/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/github-release/action.yml b/.github/actions/github-release/action.yml index 450dd2f..2b75bf9 100644 --- a/.github/actions/github-release/action.yml +++ b/.github/actions/github-release/action.yml @@ -5,6 +5,9 @@ inputs: github_token: description: 'Github token' required: true + extra_plugins: + required: false + description: 'Extra plugins for pre-install. You can also specify specifying version range for the extra plugins if you prefer.' outputs: new_release_version: @@ -27,6 +30,7 @@ runs: GITHUB_TOKEN: ${{ inputs.github_token }} with: semantic_version: 24.2.3 + extra_plugins: ${{ inputs.extra_plugins }} - name: ⬆️ Update major tag uses: richardsimko/update-tag@v1.0.11 id: update-major-tag