mirror of
https://github.com/discourse/discourse.git
synced 2025-03-26 02:35:41 +08:00
DEV: Fix input definition for release-notes workflow (#26077)
This commit is contained in:
parent
b1495884eb
commit
a9371a2a87
21
.github/workflows/release-notes.yml
vendored
21
.github/workflows/release-notes.yml
vendored
@ -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…
x
Reference in New Issue
Block a user