Skip to content

Commit 7f8da6b

Browse files
authored
feat(typescript): add created parameter to octokit.actions.listWorkflowRuns() and octokit.actions.listWorkflowRunsForRepo() (#422)
1 parent 5baadec commit 7f8da6b

File tree

5 files changed

+42
-10
lines changed

5 files changed

+42
-10
lines changed

docs/actions/listWorkflowRuns.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ Results per page (max 100)
7171

7272
Page number of the results to fetch.
7373

74+
</td></tr>
75+
<tr><td>created</td><td>no</td><td>
76+
7477
</td></tr>
7578
</tbody>
7679
</table>

docs/actions/listWorkflowRunsForRepo.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ Results per page (max 100)
6565

6666
Page number of the results to fetch.
6767

68+
</td></tr>
69+
<tr><td>created</td><td>no</td><td>
70+
6871
</td></tr>
6972
</tbody>
7073
</table>

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"author": "Gregor Martynus (https://twitter.com/gr2m)",
2525
"license": "MIT",
2626
"dependencies": {
27-
"@octokit/types": "^6.19.1",
27+
"@octokit/types": "^6.21.0",
2828
"deprecation": "^2.3.1"
2929
},
3030
"devDependencies": {

scripts/update-endpoints/generated/endpoints.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3888,6 +3888,19 @@
38883888
"validation": null,
38893889
"alias": null,
38903890
"deprecated": null
3891+
},
3892+
{
3893+
"name": "created",
3894+
"description": "",
3895+
"in": "QUERY",
3896+
"type": "string",
3897+
"required": false,
3898+
"enum": null,
3899+
"allowNull": false,
3900+
"mapToData": null,
3901+
"validation": null,
3902+
"alias": null,
3903+
"deprecated": null
38913904
}
38923905
],
38933906
"responses": [
@@ -4033,6 +4046,19 @@
40334046
"validation": null,
40344047
"alias": null,
40354048
"deprecated": null
4049+
},
4050+
{
4051+
"name": "created",
4052+
"description": "",
4053+
"in": "QUERY",
4054+
"type": "string",
4055+
"required": false,
4056+
"enum": null,
4057+
"allowNull": false,
4058+
"mapToData": null,
4059+
"validation": null,
4060+
"alias": null,
4061+
"deprecated": null
40364062
}
40374063
],
40384064
"responses": [

0 commit comments

Comments
 (0)