You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type ActionsListWorkflowRunArtifactsResponse = Array<
23945
-
ActionsListWorkflowRunArtifactsResponseItem
23946
-
>;
23947
23943
type ActivityListNotificationsResponse = Array<
23948
23944
ActivityListNotificationsResponseItem
23949
23945
>;
@@ -24391,6 +24387,10 @@ export type ActionsGetWorkflowRunParams = {
24391
24387
repo: string;
24392
24388
run_id: number;
24393
24389
};
24390
+
export type ActionsListDownloadsForSelfHostedRunnerApplicationParams = {
24391
+
owner: string;
24392
+
repo: string;
24393
+
};
24394
24394
export type ActionsListJobsForWorkflowRunParams = {
24395
24395
owner: string;
24396
24396
/**
@@ -24405,6 +24405,18 @@ export type ActionsListJobsForWorkflowRunParams = {
24405
24405
run_id: number;
24406
24406
};
24407
24407
export type ActionsListRepoWorkflowRunsParams = {
24408
+
/**
24409
+
* Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run.
24410
+
*/
24411
+
actor?: string;
24412
+
/**
24413
+
* Returns workflow runs associated with a branch. Use the name of the branch of the `push`.
24414
+
*/
24415
+
branch?: string;
24416
+
/**
24417
+
* Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events that trigger workflows](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows)" in the GitHub Help documentation.
24418
+
*/
24419
+
event?: string;
24408
24420
owner: string;
24409
24421
/**
24410
24422
* Page number of the results to fetch.
@@ -24415,6 +24427,10 @@ export type ActionsListRepoWorkflowRunsParams = {
24415
24427
*/
24416
24428
per_page?: number;
24417
24429
repo: string;
24430
+
/**
24431
+
* Returns workflow runs associated with the check run `status` or `conclusion` you specify. For example, a conclusion can be `success` or a status can be `completed`. For more information, see the `status` and `conclusion` options available in "[Create a check run](https://developer.github.com/v3/checks/runs/#create-a-check-run)."
24432
+
*/
24433
+
status?: "completed" | "status" | "conclusion";
24418
24434
};
24419
24435
export type ActionsListRepoWorkflowsParams = {
24420
24436
owner: string;
@@ -24492,6 +24508,18 @@ export type ActionsListWorkflowRunLogsParams = {
24492
24508
run_id: number;
24493
24509
};
24494
24510
export type ActionsListWorkflowRunsParams = {
24511
+
/**
24512
+
* Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run.
24513
+
*/
24514
+
actor?: string;
24515
+
/**
24516
+
* Returns workflow runs associated with a branch. Use the name of the branch of the `push`.
24517
+
*/
24518
+
branch?: string;
24519
+
/**
24520
+
* Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events that trigger workflows](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows)" in the GitHub Help documentation.
24521
+
*/
24522
+
event?: string;
24495
24523
owner: string;
24496
24524
/**
24497
24525
* Page number of the results to fetch.
@@ -24502,6 +24530,10 @@ export type ActionsListWorkflowRunsParams = {
24502
24530
*/
24503
24531
per_page?: number;
24504
24532
repo: string;
24533
+
/**
24534
+
* Returns workflow runs associated with the check run `status` or `conclusion` you specify. For example, a conclusion can be `success` or a status can be `completed`. For more information, see the `status` and `conclusion` options available in "[Create a check run](https://developer.github.com/v3/checks/runs/#create-a-check-run)."
24535
+
*/
24536
+
status?: "completed" | "status" | "conclusion";
24505
24537
workflow_id: number;
24506
24538
};
24507
24539
export type ActionsReRunWorkflowParams = {
@@ -24834,25 +24866,9 @@ export type AppsAddRepoToInstallationParams = {
24834
24866
};
24835
24867
export type AppsCheckAccountIsAssociatedWithAnyParams = {
24836
24868
account_id: number;
24837
-
/**
24838
-
* Page number of the results to fetch.
24839
-
*/
24840
-
page?: number;
24841
-
/**
24842
-
* Results per page (max 100)
24843
-
*/
24844
-
per_page?: number;
24845
24869
};
24846
24870
export type AppsCheckAccountIsAssociatedWithAnyStubbedParams = {
24847
24871
account_id: number;
24848
-
/**
24849
-
* Page number of the results to fetch.
24850
-
*/
24851
-
page?: number;
24852
-
/**
24853
-
* Results per page (max 100)
24854
-
*/
24855
-
per_page?: number;
24856
24872
};
24857
24873
export type AppsCheckAuthorizationParams = {
24858
24874
access_token: string;
@@ -25839,14 +25855,6 @@ export type IssuesGetParams = {
25839
25855
export type IssuesGetCommentParams = {
25840
25856
comment_id: number;
25841
25857
owner: string;
25842
-
/**
25843
-
* Page number of the results to fetch.
25844
-
*/
25845
-
page?: number;
25846
-
/**
25847
-
* Results per page (max 100)
25848
-
*/
25849
-
per_page?: number;
25850
25858
repo: string;
25851
25859
};
25852
25860
export type IssuesGetEventParams = {
@@ -27438,14 +27446,6 @@ export type ProjectsDeleteColumnParams = {
27438
27446
column_id: number;
27439
27447
};
27440
27448
export type ProjectsGetParams = {
27441
-
/**
27442
-
* Page number of the results to fetch.
27443
-
*/
27444
-
page?: number;
27445
-
/**
27446
-
* Results per page (max 100)
27447
-
*/
27448
-
per_page?: number;
27449
27449
project_id: number;
27450
27450
};
27451
27451
export type ProjectsGetCardParams = {
@@ -32882,6 +32882,21 @@ export type RestEndpointMethods = {
32882
32882
32883
32883
endpoint: EndpointInterface;
32884
32884
};
32885
+
/**
32886
+
* Lists binaries for the self-hosted runner application that you can download and run. Anyone with admin access to the repository can use this endpoint. GitHub Apps must have the `administration` permission to use this endpoint.
* Lists jobs for a workflow run. Anyone with read access to the repository can use this endpoint. GitHub Apps must have the `actions` permission to use this endpoint.
32887
32902
*/
@@ -32893,7 +32908,9 @@ export type RestEndpointMethods = {
32893
32908
endpoint: EndpointInterface;
32894
32909
};
32895
32910
/**
32896
-
* Lists all workflow runs for a repository. Anyone with read access to the repository can use this endpoint. GitHub Apps must have the `actions` permission to use this endpoint.
32911
+
* Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://developer.github.com/v3/#parameters).
32912
+
*
32913
+
* Anyone with read access to the repository can use this endpoint. GitHub Apps must have the `actions` permission to use this endpoint.
@@ -32967,7 +32984,9 @@ export type RestEndpointMethods = {
32967
32984
endpoint: EndpointInterface;
32968
32985
};
32969
32986
/**
32970
-
* List all workflow runs for a workflow. You can also replace `:workflow_id` with `:workflow_file_name`. For example, you could use `main.yml`. Anyone with read access to the repository can use this endpoint.
32987
+
* List all workflow runs for a workflow. You can also replace `:workflow_id` with `:workflow_file_name`. For example, you could use `main.yml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://developer.github.com/v3/#parameters).
32988
+
*
32989
+
* Anyone with read access to the repository can use this endpoint.
0 commit comments