Skip to content

Commit

Permalink
docs: add comment about null owner type
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloashmore committed Feb 1, 2024
1 parent aef2769 commit 68903d5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/manager/src/managers/git/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ export type Owner = {
provider: "gitHub";
id: string;
name: string;
// If type is null, the owner's type could not be determined. This can
// happen if a Git provider uses an owner type that we do not support.
// Owners with a null type should still be usable like any other owner.
type: "user" | "team" | null;
};

Expand Down

0 comments on commit 68903d5

Please sign in to comment.