Skip to content

Commit

Permalink
fix: add missing events
Browse files Browse the repository at this point in the history
  • Loading branch information
whilefoo committed Feb 13, 2024
1 parent b17af14 commit 10887c3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/github/types/github-events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,10 @@ export enum GitHubEvent {
"PULL_REQUEST_UNASSIGNED" = "pull_request.unassigned",
"PULL_REQUEST_UNLABELED" = "pull_request.unlabeled",
"PULL_REQUEST_UNLOCKED" = "pull_request.unlocked",
"PULL_REQUEST_DEMILESTONED" = "pull_request.demilestoned",
"PULL_REQUEST_MILESTONED" = "pull_request.milestoned",
"PULL_REQUEST_DEQUEUED" = "pull_request.dequeued",
"PULL_REQUEST_ENQUEUED" = "pull_request.enqueued",
"PULL_REQUEST_REVIEW" = "pull_request_review",
"PULL_REQUEST_REVIEW_DISMISSED" = "pull_request_review.dismissed",
"PULL_REQUEST_REVIEW_EDITED" = "pull_request_review.edited",
Expand Down Expand Up @@ -206,6 +210,7 @@ export enum GitHubEvent {
"SECRET_SCANNING_ALERT_CREATED" = "secret_scanning_alert.created",
"SECRET_SCANNING_ALERT_REOPENED" = "secret_scanning_alert.reopened",
"SECRET_SCANNING_ALERT_RESOLVED" = "secret_scanning_alert.resolved",
"SECRET_SCANNING_ALERT_REVOKED" = "secret_scanning_alert.revoked",
"SECURITY_ADVISORY" = "security_advisory",
"SECURITY_ADVISORY_PERFORMED" = "security_advisory.performed",
"SECURITY_ADVISORY_PUBLISHED" = "security_advisory.published",
Expand Down Expand Up @@ -236,13 +241,27 @@ export enum GitHubEvent {
"WORKFLOW_JOB_COMPLETED" = "workflow_job.completed",
"WORKFLOW_JOB_IN_PROGRESS" = "workflow_job.in_progress",
"WORKFLOW_JOB_QUEUED" = "workflow_job.queued",
"WORKFLOW_JOB_WATING" = "workflow_job.waiting",
"WORKFLOW_RUN" = "workflow_run",
"WORKFLOW_RUN_COMPLETED" = "workflow_run.completed",
"WORKFLOW_RUN_REQUESTED" = "workflow_run.requested",
"WORKFLOW_RUN_IN_PROGRESS" = "workflow_run.in_progress",
"DEPENDABOT_ALERT" = "dependabot_alert",
"DEPENDABOT_ALERT_CREATED" = "dependabot_alert.created",
"DEPENDABOT_ALERT_DISMISSED" = "dependabot_alert.dismissed",
"DEPENDABOT_ALERT_FIXED" = "dependabot_alert.fixed",
"DEPENDABOT_ALERT_REINTRODUCED" = "dependabot_alert.reintroduced",
"DEPENDABOT_ALERT_REOPENED" = "dependabot_alert.reopened",
"DEPLOYMENT_PROTECTION_RULE" = "deployment_protection_rule",
"DEPLOYMENT_PROTECTION_RULE_REQUESTED" = "deployment_protection_rule.requested",
"DEPLOYMENT_PROTECTION_RULE_RENAMED" = "deployment_protection_rule.renamed",
"INSTALLATION_TARGET" = "installation_target",
"INSTALLATION_TARGET_RENAMED" = "installation_target.renamed",
"MERGE_GROUP" = "merge_group",
"MERGE_GROUP_CHECKS_REQUESTED" = "merge_group.checks_requested",
"REGISTRY_PACKAGE" = "registry_package",
"REGISTRY_PACKAGE_PUBLISHED" = "registry_package.published",
"REGISTRY_PACKAGE_UPDATED" = "registry_package.updated",
"SECRET_SCANNING_ALERT_LOCATION" = "secret_scanning_alert_location",
"SECRET_SCANNING_ALERT_LOCATION_CREATED" = "secret_scanning_alert_location.created",
}

0 comments on commit 10887c3

Please sign in to comment.