Skip to content

Commit

Permalink
chore: changed defaults for contributor limits
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Jan 4, 2025
1 parent b4ff7d8 commit 767ba18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/plugin-input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ const rolesWithReviewAuthority = T.Array(T.Enum(Role), {
});

const maxConcurrentTasks = T.Object(
{ collaborator: T.Number({ default: 10 }), contributor: T.Number({ default: 5 }) },
{ collaborator: T.Number({ default: 10 }), contributor: T.Number({ default: 2 }) },
{
description: "The maximum number of tasks a user can have assigned to them at once, based on their role.",
examples: [{ collaborator: 5, contributor: 1 }],
examples: [{ collaborator: 10, contributor: 2 }],
default: {},
}
);
Expand Down

0 comments on commit 767ba18

Please sign in to comment.