Hi,
Currently, whenever there is a release, we have approvers set for each project who should approve, only then can we do the release.
Now I keep reminding them to change it from Pending to Approved So that I can mark a release to release.
Instead, can I send auto-reminders to approvers when the release date is met?
Please suggest.
This may be done with a Jira Automation rule.
At this time, there is no smart value for the approvers in the Fix Version or Affects Versions smart values.
As a workaround the rule may call the REST API with the Send Web Request action to get the version and its approvers: https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-versions/#api-rest-api-3-project-projectidorkey-version-get
For example:
yourJiraURL/rest/api/3/version/yourVersionID?expand=approvers
If you want to try this method, here is a how-to article for calling a REST API endpoint from a rule: https://community.atlassian.com/t5/Jira-articles/Automation-for-Jira-Send-web-request-using-Jira-REST-API/ba-p/1443828
Kind regards,
Bill
Are you asking about releases set up from the releases option in the left hand toolbar?
Or do you have a specific issue type called releases (or similar) with workflow statuses for pending and approved with a release date on them?
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, have a look at @Bill Sheboys post as it is currently not possible to access this information using JQL
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can create a filter for issues that need approval and set up email subscriptions.
Steps:
status = "Pending Approval" AND releaseDate <= now()
).
Or you can create an automation rule-
Trigger: Choose a trigger like "Scheduled" to run at a specific time before the release date. Condition: Add a condition to check if the issue's release date is approaching or has been reached. Action: Select the action to "Send an email" or "Send Slack message" to the approvers reminding them to change the status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the reply, But I am not looking for individual issues approval.
The solution required is for RELEASE APPROVERS.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What are the Release Approvers? Is it a user picker field or workflow status? What is the date field name to check the date is met? Based on that we can create the JQL or automation rule.
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.