From a9371a2a8777cdf1db7f3c10b85cfe6a84837869 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Thu, 7 Mar 2024 09:17:59 +0000 Subject: [PATCH] DEV: Fix input definition for release-notes workflow (#26077) --- .github/workflows/release-notes.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml index 950fa7bc9f3..1563a73f738 100644 --- a/.github/workflows/release-notes.yml +++ b/.github/workflows/release-notes.yml @@ -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