mirror of
https://github.com/discourse/discourse.git
synced 2025-04-02 00:55:59 +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:
|
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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user