DEV: Fix input definition for release-notes workflow (#26077)

This commit is contained in:
David Taylor 2024-03-07 09:17:59 +00:00 committed by GitHub
parent b1495884eb
commit a9371a2a87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,16 +2,17 @@ name: Release Notes
on: on:
workflow_dispatch: workflow_dispatch:
from: inputs:
description: 'Starting ref (exclusive). Can be a tag, branch or commit ref' from:
required: true description: 'Starting ref (exclusive). Can be a tag, branch or commit ref. `latest-release` refers to the last beta version bump.'
default: 'latest-release' required: true
type: string default: 'latest-release'
to: type: string
description: 'Ending ref (inclusive). Can be a tag, branch or commit ref' to:
required: true description: 'Ending ref (inclusive). Can be a tag, branch or commit ref. `HEAD` refers to the most recent commit.'
default: 'HEAD' required: true
type: string default: 'HEAD'
type: string
permissions: permissions:
contents: read contents: read