diff --git a/.github/workflows/build-api.yml b/.github/workflows/build-api.yml index ee3411f..b81f717 100644 --- a/.github/workflows/build-api.yml +++ b/.github/workflows/build-api.yml @@ -5,6 +5,11 @@ on: tags: - "v*" workflow_dispatch: + inputs: + version: + type: string + required: true + description: 'The version to update' jobs: update-api-doc: diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index e89687a..e65d953 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -6,6 +6,11 @@ on: - "v*" # - v[0-9]+.[0-9]+.[0-9]+ workflow_dispatch: + inputs: + version: + type: string + required: true + description: 'The version to update' jobs: deploy: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d9200ad..b2f9f56 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,11 @@ on: - 'v*' pull_request: workflow_dispatch: + inputs: + version: + type: string + required: true + description: 'The version to update' permissions: contents: read