Skip to content

Commit

Permalink
Update start release workflow inputs (#49492)
Browse files Browse the repository at this point in the history
Uses the choice input type instead of requiring manually typing the
values.
  • Loading branch information
ijjk authored May 9, 2023
1 parent dbb4124 commit 7a1bc23
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/trigger_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 7a1bc23

Please sign in to comment.