
On GitHub, what's the difference between reviewer and assignee?
Yes, "assignee" has a looser definition and can be used differently to suit a teams need. In our team of 8 devs, in most PRs we have 1 reviewer, who suggests changes and ultimately …
gitlab merge request. Who is the assignee? - Stack Overflow
Jul 27, 2022 · When I do it says: Assignee (and Assign to me) Who should I assign it to? I mean, if I assign it to me, it is going to be me who "reviews" the change and approves it, so what is …
Can a task in Asana be assigned to multiple assignees?
Feb 21, 2025 · From a development perspective having a one to many relationship between task and assignee would be an entire architecture change that would be very costly in terms of man …
Find Jira issues that I assigned to someone else - Stack Overflow
Jun 22, 2022 · Is there a way I can use JQL to find all Jira issues, that I assigned to someone else? I see the assignee field, but I want to find a JQL, where I assigned a Jira issue to …
How to find JIRA cases resolved or done by users in any given …
Jan 4, 2022 · assignee = currentUser() AND statusCategory = Done order by updated DESC This works fine. However, my question is; How do I get the cases closed/done by perticular user in …
Can you assign a task to multiple assignees in Asana?
Aug 1, 2025 · Asana recommends you use the task Assignee field for this person. To address the reduced visibility issue for others, a common approach that a number of us recommend is to …
Find issues that were ever assigned to me - Stack Overflow
Apr 6, 2010 · I am trying to create a filter to search for all issues that were ever assigned to me, even after the assignee is changed. I cant find the appropriate search parameters for this. Is it …
How to extract user profile from Planner (List tasks)?
Jan 5, 2024 · Not sure what to enter in "Get User Profile (V2)", the filed the User field with the expressions shared in the screenshot but it didnt yield in extracting email ID of the assignee of …
Jira automation - mention user in comment - Stack Overflow
I am doing some automations in Jira. I am adding comments like this to cards "User name approved the MTP on 2023-07-20" However, the user name is being entered as a text. I …
jira - Jql query for assignee or reporter as current user and status ...
Jan 3, 2023 · The query below listing closed status as well. assignee = currentUser () OR reporter = currentUser () AND status not in (Closed , resolved) order by updated DESC When reporter …