Skip to content

Commit

Permalink
feat: new allow_update_branch property on Repository
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Nov 22, 2021
1 parent de51a73 commit cb9d085
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Expand Up @@ -224,6 +224,7 @@
"type": "boolean",
"description": "Whether to allow private forks"
},
"allow_update_branch": { "type": "boolean" },
"is_template": { "type": "boolean" },
"topics": { "type": "array", "items": { "type": "string" } },
"visibility": {
Expand Down
1 change: 1 addition & 0 deletions payload-types/schema.d.ts
Expand Up @@ -552,6 +552,7 @@ export interface Repository {
* Whether to allow private forks
*/
allow_forking?: boolean;
allow_update_branch?: boolean;
is_template: boolean;
topics: string[];
visibility: "public" | "private" | "internal";
Expand Down

0 comments on commit cb9d085

Please sign in to comment.