From 040bf9b59d65ef57c8d62a3cd2e19ba77dcebedc Mon Sep 17 00:00:00 2001 From: smdn Date: Wed, 11 Dec 2024 21:41:59 +0900 Subject: [PATCH] reduce number of inputs for workflow_dispatch up to 10 --- .github/workflows/run-publish-release-dispatch.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/run-publish-release-dispatch.yml b/.github/workflows/run-publish-release-dispatch.yml index c1980ad..117967c 100644 --- a/.github/workflows/run-publish-release-dispatch.yml +++ b/.github/workflows/run-publish-release-dispatch.yml @@ -9,12 +9,6 @@ permissions: on: workflow_dispatch: inputs: - workflow_runs_on: - description: "The OS label which run the workflow on. (ex: ubuntu-latest, ubuntu-24.04)" - required: false - type: string - default: "ubuntu-latest" - release_tag: description: "The name of the tag for the release to be created." required: true @@ -74,7 +68,7 @@ jobs: run-publish-release-target: uses: smdn/Smdn.Net.EchonetLite/.github/workflows/publish-release.yml@republish-releases with: - workflow_runs_on: ${{ github.event.inputs.workflow_runs_on }} + workflow_runs_on: 'ubuntu-latest' release_tag: ${{ github.event.inputs.release_tag }} release_note_url: ${{ github.event.inputs.release_note_url }} release_prerelease: ${{ fromJson(github.event.inputs.release_prerelease) }}