Skip to content

Commit

Permalink
feat(types): add missing workflow_job.queued event (#633)
Browse files Browse the repository at this point in the history
Co-authored-by: Octokit Bot <[email protected]>
  • Loading branch information
octokitbot and Octokit Bot authored Sep 15, 2021
1 parent c51e5ee commit b611fee
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 78 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ If there are actions for a webhook, events are emitted for both, the webhook nam
| [`team_add`](https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#team_add) | |
| [`watch`](https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#watch) | `started` |
| [`workflow_dispatch`](https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_dispatch) | |
| [`workflow_job`](https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_job) | `completed`<br>`started` |
| [`workflow_job`](https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_job) | `completed`<br>`queued`<br>`started` |
| [`workflow_run`](https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_run) | `completed`<br>`requested` |

<!-- /autogenerated via scripts/generate-types.ts -->
Expand Down
150 changes: 75 additions & 75 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
"dependencies": {
"@octokit/request-error": "^2.0.2",
"@octokit/webhooks-methods": "^2.0.0",
"@octokit/webhooks-types": "4.6.1",
"@octokit/webhooks-types": "4.7.0",
"aggregate-error": "^3.1.0"
},
"devDependencies": {
"@jest/types": "^27.0.0",
"@octokit/tsconfig": "^1.0.1",
"@octokit/webhooks-schemas": "4.6.1",
"@octokit/webhooks-schemas": "4.7.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
Expand Down
1 change: 1 addition & 0 deletions src/generated/webhook-names.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ export const emitterEventNames = [
"workflow_dispatch",
"workflow_job",
"workflow_job.completed",
"workflow_job.queued",
"workflow_job.started",
"workflow_run",
"workflow_run.completed",
Expand Down

0 comments on commit b611fee

Please sign in to comment.