Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2026-05-14 00:02:48 +00:00
parent df46b4857a
commit e3763c4892
8 changed files with 78 additions and 12 deletions
+12 -4
View File
@@ -3236,7 +3236,7 @@ Name | Type | Description | Notes
<a name="listWorkflowJobs"></a>
# **listWorkflowJobs**
> ActionWorkflowJobsResponse listWorkflowJobs(owner, repo, status, page, limit)
> ActionWorkflowJobsResponse listWorkflowJobs(owner, repo, status, page, limit, sort, order)
Lists all jobs for a repository
@@ -3297,8 +3297,10 @@ String repo = "repo_example"; // String | name of the repository
String status = "status_example"; // String | workflow status (pending, queued, in_progress, failure, success, skipped)
Integer page = 56; // Integer | page number of results to return (1-based)
Integer limit = 56; // Integer | page size of results
String sort = "sort_example"; // String | sort jobs by attribute. Supported values are \"id\". Default is \"id\"
String order = "order_example"; // String | sort order, either \"asc\" (ascending) or \"desc\" (descending). Default is \"asc\"
try {
ActionWorkflowJobsResponse result = apiInstance.listWorkflowJobs(owner, repo, status, page, limit);
ActionWorkflowJobsResponse result = apiInstance.listWorkflowJobs(owner, repo, status, page, limit, sort, order);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling RepositoryApi#listWorkflowJobs");
@@ -3315,6 +3317,8 @@ Name | Type | Description | Notes
**status** | **String**| workflow status (pending, queued, in_progress, failure, success, skipped) | [optional]
**page** | **Integer**| page number of results to return (1-based) | [optional]
**limit** | **Integer**| page size of results | [optional]
**sort** | **String**| sort jobs by attribute. Supported values are \&quot;id\&quot;. Default is \&quot;id\&quot; | [optional]
**order** | **String**| sort order, either \&quot;asc\&quot; (ascending) or \&quot;desc\&quot; (descending). Default is \&quot;asc\&quot; | [optional]
### Return type
@@ -3430,7 +3434,7 @@ Name | Type | Description | Notes
<a name="listWorkflowRunJobs"></a>
# **listWorkflowRunJobs**
> ActionWorkflowJobsResponse listWorkflowRunJobs(owner, repo, run, status, page, limit)
> ActionWorkflowJobsResponse listWorkflowRunJobs(owner, repo, run, status, page, limit, sort, order)
Lists all jobs for a workflow run
@@ -3492,8 +3496,10 @@ Integer run = 56; // Integer | runid of the workflow run
String status = "status_example"; // String | workflow status (pending, queued, in_progress, failure, success, skipped)
Integer page = 56; // Integer | page number of results to return (1-based)
Integer limit = 56; // Integer | page size of results
String sort = "sort_example"; // String | sort jobs by attribute. Supported values are \"id\". Default is \"id\"
String order = "order_example"; // String | sort order, either \"asc\" (ascending) or \"desc\" (descending). Default is \"asc\"
try {
ActionWorkflowJobsResponse result = apiInstance.listWorkflowRunJobs(owner, repo, run, status, page, limit);
ActionWorkflowJobsResponse result = apiInstance.listWorkflowRunJobs(owner, repo, run, status, page, limit, sort, order);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling RepositoryApi#listWorkflowRunJobs");
@@ -3511,6 +3517,8 @@ Name | Type | Description | Notes
**status** | **String**| workflow status (pending, queued, in_progress, failure, success, skipped) | [optional]
**page** | **Integer**| page number of results to return (1-based) | [optional]
**limit** | **Integer**| page size of results | [optional]
**sort** | **String**| sort jobs by attribute. Supported values are \&quot;id\&quot;. Default is \&quot;id\&quot; | [optional]
**order** | **String**| sort order, either \&quot;asc\&quot; (ascending) or \&quot;desc\&quot; (descending). Default is \&quot;asc\&quot; | [optional]
### Return type