Skip to content

Commit 47ccfc8

Browse files
authored
fix : npm-publish workflow to remove input fields for release title and body (#53)
1 parent 301f4b0 commit 47ccfc8

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@ name: "Release New Version"
22

33
on:
44
workflow_dispatch:
5-
inputs:
6-
release_title:
7-
description: "Title for the release"
8-
required: true
9-
release_body:
10-
description: "Additional notes (optional)"
11-
required: false
12-
default: ""
135

146
permissions:
157
contents: write
@@ -115,10 +107,8 @@ jobs:
115107
uses: actions/create-release@v1
116108
with:
117109
tag_name: ${{ steps.get_version.outputs.version }}
118-
release_name: ${{ github.event.inputs.release_title }}
110+
release_name: ${{ steps.get_version.outputs.version }}
119111
body: |
120-
${{ github.event.inputs.release_body }}
121-
122112
${{ steps.fetch_prs.outputs.pr_list }}
123113
124114
Published by ${{ github.actor }}

0 commit comments

Comments
 (0)