From 56086d7ace8f77c2776cffc0b5f12ffb247729d0 Mon Sep 17 00:00:00 2001 From: Boris Serdiuk Date: Fri, 15 Dec 2023 15:37:08 +0400 Subject: [PATCH] chore: Add commit parameter to release notes workflow (#73) --- .github/workflows/release-gh-notes.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release-gh-notes.yml b/.github/workflows/release-gh-notes.yml index c573a80..dfa022f 100644 --- a/.github/workflows/release-gh-notes.yml +++ b/.github/workflows/release-gh-notes.yml @@ -11,6 +11,10 @@ on: required: true description: 'npm package of the release repo' type: string + commit: + required: false + description: 'commit to generate release notes' + type: string permissions: contents: write @@ -22,3 +26,4 @@ jobs: with: npm_package: ${{ github.event.inputs.npm_package }} version: ${{ github.event.inputs.version }} + commit: ${{ github.event.inputs.commit }}