diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index 3f4d4cb074..22209764cb 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -12,11 +12,9 @@ on: - minor - major release_candidate: - type: choice - description: 'Release candidate?' - options: - - false - - true + type: boolean + description: 'Release candidate' + default: false new_version: description: 'New version to bump to' required: true @@ -27,17 +25,13 @@ on: required: true type: string force: - type: choice - description: 'Force override check?' - options: - - false - - true + type: boolean + description: 'Force override check' + default: false dry_run: - type: choice - description: 'Perform a dry run to check?' - options: - - true - - false + type: boolean + description: 'Perform a dry run to check' + default: true jobs: bump-version: diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index c45d90d53e..ac2068c20e 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -17,11 +17,9 @@ on: workflow_dispatch: inputs: publish: - type: choice - description: 'Publish to TestPyPI?' - options: - - false - - true + type: boolean + description: 'Publish to TestPyPI' + default: false concurrency: group: ${{ github.workflow }}-${{ github.ref }}