Skip to content

Commit

Permalink
Merge pull request #31 from sendbird/fix/remove-default-values
Browse files Browse the repository at this point in the history
fix: remove default values from action.yml
  • Loading branch information
bang9 authored Jan 16, 2024
2 parents c67677c + f460cbd commit a3d353a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 0 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@ inputs:
test:
required: false
description: 'Input actions run on testing environment'
default: 'false'
changelog_file:
required: false
description: 'Input changelog file name. (e.g. CHANGELOG_KTX_DRAFT.md) Default is CHANGELOG_DRAFT.md.'
default: 'CHANGELOG_DRAFT.md'
runs:
using: 'node16'
main: 'dist/index.js'
3 changes: 2 additions & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/workflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ async function buildCreateTicketParams(

return {
...basicParams,
test: core.getBooleanInput('test') || params.test,
test: core.getBooleanInput('test') ?? params.test ?? false,
product_jira_project_key: core.getInput('product_jira_project_key'),
product_jira_version_prefix:
core.getInput('product_jira_version_prefix') ||
Expand Down

0 comments on commit a3d353a

Please sign in to comment.