5
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2025-11-07 10:46:56 +00:00

refactor: rename parameter tagFormat

This commit is contained in:
Joel Humberto Gomez Paredes 2023-03-05 02:29:57 -06:00
parent ed38eb0e99
commit a1673fc63d
2 changed files with 2 additions and 2 deletions

View file

@ -83,7 +83,7 @@ exports.handleExtends = () => {
* @returns {{}|{tagFormat: String}}
*/
exports.handleTagFormat = () => {
const tagFormat = core.getInput(inputs.tagFormat);
const tagFormat = core.getInput(inputs.tag_format);
if (tagFormat) {
return {

View file

@ -6,5 +6,5 @@
"dry_run": "dry_run",
"extends": "extends",
"working_directory": "working_directory",
"tagFormat": "tagFormat"
"tag_format": "tag_format"
}