Skip to content

Commit

Permalink
feat: add support for specifying a name for the forked repository w…
Browse files Browse the repository at this point in the history
…hen creating a fork with `POST /repos/{owner}/{repo}/forks`
  • Loading branch information
timrogers committed Jul 4, 2022
1 parent c335e4b commit f300f8a
Show file tree
Hide file tree
Showing 6 changed files with 4,442 additions and 12 deletions.
2 changes: 1 addition & 1 deletion packages/openapi-types-ghes-3.2/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21195,8 +21195,8 @@ export interface operations {
/** Response */
200: {
content: {
"application/json+sarif": string;
"application/json": components["schemas"]["code-scanning-analysis"];
"application/json+sarif": { [key: string]: unknown };
};
};
403: components["responses"]["code_scanning_forbidden_read"];
Expand Down
2 changes: 1 addition & 1 deletion packages/openapi-types-ghes-3.3/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21824,8 +21824,8 @@ export interface operations {
/** Response */
200: {
content: {
"application/json+sarif": string;
"application/json": components["schemas"]["code-scanning-analysis"];
"application/json+sarif": { [key: string]: unknown };
};
};
403: components["responses"]["code_scanning_forbidden_read"];
Expand Down
6 changes: 3 additions & 3 deletions packages/openapi-types-ghes-3.4/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22868,8 +22868,8 @@ export interface operations {
ref?: components["parameters"]["git-ref"];
/** The direction to sort the results by. */
direction?: components["parameters"]["direction"];
/** The property by which to sort the results. */
sort?: "created" | "updated" | "number";
/** The property by which to sort the results. . `number` is deprecated - we recommend that you use `created` instead. */
sort?: "created" | "number" | "updated";
/** Set to `open`, `closed, `fixed`, or `dismissed` to list code scanning alerts in a specific state. */
state?: components["schemas"]["code-scanning-alert-state"];
};
Expand Down Expand Up @@ -23076,8 +23076,8 @@ export interface operations {
/** Response */
200: {
content: {
"application/json+sarif": string;
"application/json": components["schemas"]["code-scanning-analysis"];
"application/json+sarif": { [key: string]: unknown };
};
};
403: components["responses"]["code_scanning_forbidden_read"];
Expand Down
Loading

0 comments on commit f300f8a

Please sign in to comment.