Skip to content

Commit 2c5df9c

Browse files
committed
Fix passing parameters to changelog action
When running the action GitHub showed a warning: Unexpected input(s) 'INPUT_CHANGELOG_FILE', valid inputs are ['entryPoint', 'args', 'tag_name', 'changelog_file', 'add_emojis', 'emoji_end_of_line', 'add_raw_changelog_link', 'allow_failure'] Remove the wrong 'INPUT_' prefix and use lower case as in the warning and because it's nicer to read.
1 parent 9a87dec commit 2c5df9c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ jobs:
4949
id: changelog
5050
uses: 3liz/changelog-release@0.2.0
5151
with:
52-
INPUT_CHANGELOG_FILE: Changelog.md
53-
ADD_EMOJIS: false
52+
changelog_file: Changelog.md
53+
add_emojis: false
5454

5555
- name: Release
5656
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)