Skip to content

Commit

Permalink
fix: add missing internal value to repository visibility field
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Nov 22, 2021
1 parent 06cd305 commit 5309b15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -225,7 +225,7 @@
},
"is_template": { "type": "boolean" },
"topics": { "type": "array", "items": { "type": "string" } },
"visibility": { "type": "string", "enum": ["public", "private"] },
"visibility": { "type": "string", "enum": ["public", "private", "internal"] },
"delete_branch_on_merge": {
"type": "boolean",
"description": "Whether to delete head branches when pull requests are merged",
Expand Down
2 changes: 1 addition & 1 deletion payload-types/schema.d.ts
Expand Up @@ -554,7 +554,7 @@ export interface Repository {
allow_forking?: boolean;
is_template: boolean;
topics: string[];
visibility?: "public" | "private";
visibility?: "public" | "private" | "internal";
/**
* Whether to delete head branches when pull requests are merged
*/
Expand Down

0 comments on commit 5309b15

Please sign in to comment.