I am trying to run this automation, which should be triggered manually, then prompt for a startDate. That start date should be input into this jql filter query:
project = "Data Management" and summary ~ "dbt Job Run: Test_Center.Test" and issuetype = "Test Execution" and created >= {{startDate}}
This is the failure I get from the audit log:
Manual trigger from issue 02/19/2025, 09:32:28
Create variable 02/19/2025, 09:32:28
JQL condition 02/19/2025, 09:32:28 JQL didn't run, which prevented the JQL condition from passing and its actions from being executed: Invalid JQL: project = "Data Management" and summary ~ "dbt Job Run: Test_Center.Test" and issuetype = "Test Execution" and created >=
I know the issue is around the startDate, but I can't figure out how to fix it. This is the variable: Variable name = startDate Smart value={{userInputs.startDate}}
Any help would be appreciated