Skip to content

Commit

Permalink
fix(verbiage): updated action variable name (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
maira-samtek authored Jun 27, 2024
1 parent 2fe7685 commit f7752b7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ inputs:
assign-jira-ticket-to:
description: 'the assignee accountId to assign the Jira ticket to}'
required: false
jira-feature-issue:
description: 'the new created issue will be linked to this feature issue'
jira-link-id:
description: 'the new created issue will be linked to this link id'
required: false
jira-link-type:
description: "this defines the relation of the new issue with feature issue specified and default value for this is 'Relates'"
Expand Down
2 changes: 1 addition & 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/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ async function run(): Promise<void> {
process.env.JIRA_CLOSED_STATUSES = core.getInput('jira-ignore-statuses')
process.env.AUTO_CLOSE = core.getInput('auto-close')
process.env.ASSIGNEE = core.getInput('assign-jira-ticket-to')
process.env.JIRA_LINK_ID = core.getInput('jira-feature-issue')
process.env.JIRA_LINK_ID = core.getInput('jira-link-id')
process.env.JIRA_LINK_TYPE = core.getInput('jira-link-type')

let customJiraFields
Expand Down

0 comments on commit f7752b7

Please sign in to comment.