Update start release workflow inputs (#49492)

Uses the choice input type instead of requiring manually typing the
values.
This commit is contained in:
JJ Kasper 2023-05-08 17:26:33 -07:00 committed by GitHub
parent dbb412437a
commit 7a1bc235f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,13 +2,20 @@ on:
workflow_dispatch:
inputs:
releaseType:
description: stable or canary (case sensitive)?
description: stable or canary?
required: true
type: string
type: choice
options:
- canary
- stable
semverType:
description: patch, minor, or major (case sensitive)?
type: string
description: semver type?
type: choice
options:
- patch
- minor
- major
secrets:
RELEASE_BOT_TOKEN: