About 91,100 results
Open links in new tab
  1. 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 approves the PR. …

  2. 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 the point? …

  3. 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 hours and …

  4. Use rule to send comment to task assignee, not a specific user

    May 6, 2025 · Hi all, hope you’re doing well. I’m trying to setup a rule to send a tagged comment to whoever is the assignee of the task. The use case is a reminder sent to a person when a task is …

  5. How to find JIRA cases resolved or done by users in any given month …

    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 any given …

  6. 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 someone else other than …

  7. 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 even possibl...

  8. JIRA custom filter in board to select all userstory subtask if a ...

    Jan 3, 2025 · To get all User Story that have an assignee, here is the JQL to run : issuetype = "User Story" and assignee is not EMPTY And to get all the subtasks in these user stories, you must use the …

  9. Assign request to a person automatically using rules

    Feb 10, 2025 · Hi Vanessa, Tks for sharing, I tried and it worked. Only concern I have is that everytime when there is a personal change we have to remember to update the workflow. So ideally if Asana is …

  10. 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 = …