How can I automate moving an idea to a different status once the 'Evaluate Later' date is reached?
You can use Jira Automation to move the idea after a specified date is reached. Here’s how you can set it up:
1. Create a New Automation Rule:
2. Set the Trigger:
3. Add a Condition:
4. Add the Transition Action:
5. Save and Enable the Rule:
Disclaimer: The above should work, but I haven't had the time to test it.
Hi Jens. That was the route that I was attempting with scheduled triggers. The problem is in the JQL query. JPD uses a custom date format that doesn't support that kind of logic. It also isn't a smart value either.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Levi Palmer , you are right. I missed that JPD uses a different format.
After a little bit of research and trial and error I figured out a viable solution.
1. Create variable
Copy a re-formatted JPD value into a variable called targetDate (you can choose a different name). Use the following for the smart value:
{{triggerIssue.customfield_10392.substringAfter("\"end\":\"").substringBefore("\"")}}
2. {{smart values}} condition
Compare the variable to a formatted version of the current date
{{now.jiraDate}} equals {{targetDate}}
That will allow you to check if the JPD date matches today's date.
Hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.