From d7e2bd9996a565e97d8a31659d56f58fc9f4056e Mon Sep 17 00:00:00 2001 From: Francisco Javier Arceo Date: Thu, 5 Dec 2024 14:09:22 -0500 Subject: [PATCH] chore: Adding back the access token Signed-off-by: Francisco Javier Arceo --- .github/workflows/show_semantic_release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/show_semantic_release.yml b/.github/workflows/show_semantic_release.yml index 550c0a005d..f4aef6be54 100644 --- a/.github/workflows/show_semantic_release.yml +++ b/.github/workflows/show_semantic_release.yml @@ -2,11 +2,19 @@ name: show semantic release versions on: workflow_dispatch: + inputs: + token: + description: 'Personal Access Token' + required: true + default: "" + type: string jobs: get_dry_release_versions: runs-on: ubuntu-latest + env: + GITHUB_TOKEN: ${{ github.event.inputs.token }} outputs: current_version: ${{ steps.get_versions.outputs.current_version }} next_version: ${{ steps.get_versions.outputs.next_version }}