I am maintaining Assignee, Reporter and some other fields data in a Table .so, whenever this table is refreshed i need to update the data of old issues also. Is there any possibility to execute my automation rule when database table is refreshed
Hi @Sam
While Jira Automation rules can't be directly triggered by an external database refresh, you can give a try by involving an external script or integration.
Create a PUT request to update issue fields, below given is an example.
json
{
"fields": {
"assignee": {"name": "new_assignee"},
"reporter": {"name": "new_reporter"}
}
}
To learn more about the above action - Updating an Issue via the JIRA REST APIs 6848604
Finally, you can use Jira's Incoming Webhook trigger to start an automation rule when the external script notifies Jira, allowing you to extract data from the webhook payload and update fields using the Edit Issue action.
Hope this helps - Happy to help further!!
Thank you very much and have a great one!
Warm regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.