We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c27453 commit 0b1dd88Copy full SHA for 0b1dd88
1 file changed
action.yml
@@ -75,6 +75,6 @@ runs:
75
JIRA_URL: ${{ env.JIRA_URL }} # Needs to be passed from caller workflow; by ENV (secure), not by input
76
JIRA_USER: ${{ env.JIRA_USER }} # Needs to be passed from caller workflow; by ENV (secure), not by input
77
INPUT_CRON_JOB: ${{ github.event_name == 'schedule' && 'true' || '' }}
78
- JIRA_PROJECT: ${{ inputs.jira-project }}
+ JIRA_PROJECT: ${{ inputs.jira-project != '' && inputs.jira-project || env.JIRA_PROJECT }} # Try input, fallback to enn
79
JIRA_COMPONENT: ${{ inputs.jira-component }}
80
JIRA_ISSUE_TYPE: ${{ inputs.jira-issue-type }}
0 commit comments