DEV: Fix input definition for release-notes workflow (#26077)
This commit is contained in:
parent
b1495884eb
commit
a9371a2a87
|
@ -2,16 +2,17 @@ name: Release Notes
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
from:
|
||||
description: 'Starting ref (exclusive). Can be a tag, branch or commit ref'
|
||||
required: true
|
||||
default: 'latest-release'
|
||||
type: string
|
||||
to:
|
||||
description: 'Ending ref (inclusive). Can be a tag, branch or commit ref'
|
||||
required: true
|
||||
default: 'HEAD'
|
||||
type: string
|
||||
inputs:
|
||||
from:
|
||||
description: 'Starting ref (exclusive). Can be a tag, branch or commit ref. `latest-release` refers to the last beta version bump.'
|
||||
required: true
|
||||
default: 'latest-release'
|
||||
type: string
|
||||
to:
|
||||
description: 'Ending ref (inclusive). Can be a tag, branch or commit ref. `HEAD` refers to the most recent commit.'
|
||||
required: true
|
||||
default: 'HEAD'
|
||||
type: string
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
|
Loading…
Reference in New Issue