One of our forms, we have a date field for the user to have a task finished on. How can I make our Jira instance write an internal comment of our choosing on that specific date? I was poking around past forms and it looks like I cannot do this OOTB.
If you have access to automation (Project Settings -> Automation), you can set up a "Scheduled" Rule to run everyday, and:
1. Run for all relevant tickets (you can use JQL to fetch them)
2. Check if {{now.jiraDate}} equals the value of the custom field.
2. If yes, add a comment to the ticket.
Hope that helps!
Interesting approach! Would this become resource hungry after a bigger amount of tickets coming through? Or maybe change the conditions to check every ticket X days prior to todays date only, then run your suggested condition?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use JQL to pare down the number of tickets that are fetched - something like
customfield_value = {{now.jiraDate}}
Then you won't need the check as well since only those issues with the field value = today will be returned.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.