Does anyone have a JQL query I can use to find pending approvals for inactive users?
I tried some combination of the two below queries but I couldn't get anything to work.
assignee not in membersOf("jira-software-users")
pendingBy()
Where the inactive user is the assignee:
assignee in inactiveUsers() and approvals = pending()
Where the inactive user is the reporter:
reporter in inactiveUsers() and approvals = pending()
If you're after a query where the approver is inactive you'll need to enable the search functionality against the field first
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.