Hello,
I need help for scheduled Automation rules that I'm trying to run to check for issues in a specific status and how long the issue is in this status from the last time the transition occured. They will run once per day.
In fact, the idea is to be 3 separate automations writing comments in the issue notifying the client that the issue will be closed soon due to inactivity. The last rule will close the issue. Custom field checkboxes are marked to asure that one rule will not be run on the same issue again the next day. Another automation watches for customer comments to unmark checkboxes. This part works fine.
The problem is with the JQL conditions for the rules. They don't check the last time this transition was made but all of the transitions to the status specified in the issue history:
Condition for Rule 1 (transitions in 10 to 19 days ago)
status changed to "STATUS" BEFORE startOfDay(-10d) AND status changed to "STATUS" AFTER startOfDay(-19d)
Condition for Rule 2 (transitions in 20 to 29 days ago)
status changed to "STATUS" BEFORE startOfDay(-20d) AND status changed to "STATUS" AFTER startOfDay(-29d)
Condition for Rule 3 (transitions in 30+ days)
status changed to "STATUS" BEFORE startOfDay(-30d)
For example, with the first condition I get issues that were transitioned yesterday and in issue history I see they were transitioned in the past to "STATUS", so the rule will run on them. Which will be wrong.
Is there a way to add something to the JQL that shows only the last time issues were transitioned to "STATUS"?
Hope I described the task clearly.
Thanks in advance!
Jira does not have field level security, so there's not a lot you can do here.
If you mean "hide field from users", you can't. Jira is a collaboration tool, and hidden data is an anathema to collaboration, so it doesn't do it.
If you want to stop people editing a field, then you need to move the edit into the workflow. Remove the field from the "edit screen", then create transitions in the workflow that use a transition screen with the field, and are protected with conditions that limit who can use the transition,
How about using the https://marketplace.atlassian.com/apps/23216/field-security-plugin-for-jira
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.
Add a custom field for the "solution version" and then explain what you mean by "locking" to us, because it is not clear.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Seems like today is the day of no details lol
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
what do you mean by locking?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i want to make this field "Solution Version - in Requierement" unavailable for some Users
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.