Skip to content

Commit a5cf890

Browse files
Fix conditional logic for Jira URL selection in release action
1 parent 38a021c commit a5cf890

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

release-jira-version/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ runs:
5858
python ${{ github.action_path }}/release_jira_version.py \
5959
--project-key="${{ inputs.jira_project_key }}" \
6060
--version-name="${{ inputs.jira_version_name || steps.determine_version_name.outputs.VERSION_NAME }}" \
61-
--jira-url="${{ (inputs.use_jira_sandbox == 'true' || env.USE_JIRA_SANDBOX == 'true') && env.JIRA_SANDBOX_URL || env.JIRA_PROD_URL }}" \
61+
--jira-url="${{ ((inputs.use_jira_sandbox || env.USE_JIRA_SANDBOX) == 'true') && env.JIRA_SANDBOX_URL || env.JIRA_PROD_URL }}" \
6262
>> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)