Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEATURE: Add a fallback to auto-assign #528

Merged
merged 1 commit into from
Nov 22, 2023
Merged

Commits on Nov 20, 2023

  1. FEATURE: Add a fallback to auto-assign

    Currently, when the auto-assign logic can’t find a user to assign, it
    will fail saying there was no one to assign. The current logic is this
    one:
    - Don’t pick anyone who’s been picked in the last 180 days
    - If no one has been found, then try the same thing but only for the
      last 14 days.
    While this is working relatively well for large enough groups, it
    doesn’t work at all with very small groups (like 2 people) and it
    creates unnecessary noise.
    
    This patch addresses this issue by adding a fallback to the current
    logic. Now, if the two first rules fail, instead of saying that no one
    was assigned, we assign the least recently assigned person. This way,
    the logic will continue to work with large groups but will also work
    nicely with small groups.
    Flink committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    f18eb57 View commit details
    Browse the repository at this point in the history