> ## Documentation Index
> Fetch the complete documentation index at: https://docs.juju.bi/llms.txt
> Use this file to discover all available pages before exploring further.

# Webhook Events

> Track which GitHub webhook events are currently supported by Jujubi.

export const SUPPORT_STATUS_CONFIG = {
  supported: {
    color: 'green',
    label: 'Supported'
  },
  partial: {
    color: 'blue',
    label: 'Partial'
  },
  unsupported: {
    color: 'yellow',
    label: 'Planned'
  },
  never: {
    color: 'red',
    label: 'Never'
  }
};

export const SupportStatus = ({status, count}) => {
  const config = SUPPORT_STATUS_CONFIG[status] ?? SUPPORT_STATUS_CONFIG.unsupported;
  const text = count == null ? config.label : `${config.label}: ${count}`;
  return <Badge color={config.color} size="sm">
      {text}
    </Badge>;
};

Jujubi aims to provide GitHub-compatible webhook events, but only a subset is supported initially.

## Current Status

<SupportStatus status="unsupported" count={276} />

<SupportStatus status="never" count={15} />

## branch\_protection\_configuration

* [`disabled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=disabled#branch_protection_configuration) <SupportStatus status="unsupported" />
* [`enabled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=enabled#branch_protection_configuration) <SupportStatus status="unsupported" />

## branch\_protection\_rule

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#branch_protection_rule) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#branch_protection_rule) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#branch_protection_rule) <SupportStatus status="unsupported" />

## bypass\_request\_secret\_scanning

* [`cancelled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=cancelled#bypass_request_secret_scanning) <SupportStatus status="unsupported" />
* [`completed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=completed#bypass_request_secret_scanning) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#bypass_request_secret_scanning) <SupportStatus status="unsupported" />
* [`response_dismissed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=response_dismissed#bypass_request_secret_scanning) <SupportStatus status="unsupported" />
* [`response_submitted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=response_submitted#bypass_request_secret_scanning) <SupportStatus status="unsupported" />

## check\_run

* [`completed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=completed#check_run) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#check_run) <SupportStatus status="unsupported" />
* [`requested_action`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=requested_action#check_run) <SupportStatus status="unsupported" />
* [`rerequested`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=rerequested#check_run) <SupportStatus status="unsupported" />

## check\_suite

* [`completed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=completed#check_suite) <SupportStatus status="unsupported" />
* [`requested`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=requested#check_suite) <SupportStatus status="unsupported" />
* [`rerequested`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=rerequested#check_suite) <SupportStatus status="unsupported" />

## code\_scanning\_alert

* [`appeared_in_branch`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=appeared_in_branch#code_scanning_alert) <SupportStatus status="unsupported" />
* [`closed_by_user`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=closed_by_user#code_scanning_alert) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#code_scanning_alert) <SupportStatus status="unsupported" />
* [`fixed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=fixed#code_scanning_alert) <SupportStatus status="unsupported" />
* [`reopened`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=reopened#code_scanning_alert) <SupportStatus status="unsupported" />
* [`reopened_by_user`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=reopened_by_user#code_scanning_alert) <SupportStatus status="unsupported" />
* [`updated_assignment`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=updated_assignment#code_scanning_alert) <SupportStatus status="unsupported" />

## commit\_comment

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#commit_comment) <SupportStatus status="unsupported" />

## create

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#create) <SupportStatus status="unsupported" />

## custom\_property

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#custom_property) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#custom_property) <SupportStatus status="unsupported" />
* [`promote_to_enterprise`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=promote_to_enterprise#custom_property) <SupportStatus status="unsupported" />
* [`updated`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=updated#custom_property) <SupportStatus status="unsupported" />

## custom\_property\_values

* [`updated`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=updated#custom_property_values) <SupportStatus status="unsupported" />

## delete

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#delete) <SupportStatus status="unsupported" />

## dependabot\_alert

* [`assignees_changed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=assignees_changed#dependabot_alert) <SupportStatus status="unsupported" />
* [`auto_dismissed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=auto_dismissed#dependabot_alert) <SupportStatus status="unsupported" />
* [`auto_reopened`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=auto_reopened#dependabot_alert) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#dependabot_alert) <SupportStatus status="unsupported" />
* [`dismissed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=dismissed#dependabot_alert) <SupportStatus status="unsupported" />
* [`fixed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=fixed#dependabot_alert) <SupportStatus status="unsupported" />
* [`reintroduced`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=reintroduced#dependabot_alert) <SupportStatus status="unsupported" />
* [`reopened`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=reopened#dependabot_alert) <SupportStatus status="unsupported" />

## deploy\_key

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#deploy_key) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#deploy_key) <SupportStatus status="unsupported" />

## deployment

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#deployment) <SupportStatus status="unsupported" />

## deployment\_protection\_rule

* [`requested`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=requested#deployment_protection_rule) <SupportStatus status="unsupported" />

## deployment\_review

* [`approved`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=approved#deployment_review) <SupportStatus status="unsupported" />
* [`rejected`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=rejected#deployment_review) <SupportStatus status="unsupported" />
* [`requested`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=requested#deployment_review) <SupportStatus status="unsupported" />

## deployment\_status

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#deployment_status) <SupportStatus status="unsupported" />

## discussion

* [`answered`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=answered#discussion) <SupportStatus status="unsupported" />
* [`category_changed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=category_changed#discussion) <SupportStatus status="unsupported" />
* [`closed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=closed#discussion) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#discussion) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#discussion) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#discussion) <SupportStatus status="unsupported" />
* [`labeled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=labeled#discussion) <SupportStatus status="unsupported" />
* [`locked`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=locked#discussion) <SupportStatus status="unsupported" />
* [`pinned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=pinned#discussion) <SupportStatus status="unsupported" />
* [`reopened`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=reopened#discussion) <SupportStatus status="unsupported" />
* [`transferred`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=transferred#discussion) <SupportStatus status="unsupported" />
* [`unanswered`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unanswered#discussion) <SupportStatus status="unsupported" />
* [`unlabeled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unlabeled#discussion) <SupportStatus status="unsupported" />
* [`unlocked`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unlocked#discussion) <SupportStatus status="unsupported" />
* [`unpinned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unpinned#discussion) <SupportStatus status="unsupported" />

## discussion\_comment

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#discussion_comment) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#discussion_comment) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#discussion_comment) <SupportStatus status="unsupported" />

## dismissal\_request\_code\_scanning

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#dismissal_request_code_scanning) <SupportStatus status="unsupported" />
* [`response_submitted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=response_submitted#dismissal_request_code_scanning) <SupportStatus status="unsupported" />

## dismissal\_request\_dependabot

* [`cancelled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=cancelled#dismissal_request_dependabot) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#dismissal_request_dependabot) <SupportStatus status="unsupported" />
* [`response_submitted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=response_submitted#dismissal_request_dependabot) <SupportStatus status="unsupported" />

## dismissal\_request\_secret\_scanning

* [`cancelled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=cancelled#dismissal_request_secret_scanning) <SupportStatus status="unsupported" />
* [`completed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=completed#dismissal_request_secret_scanning) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#dismissal_request_secret_scanning) <SupportStatus status="unsupported" />
* [`response_dismissed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=response_dismissed#dismissal_request_secret_scanning) <SupportStatus status="unsupported" />
* [`response_submitted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=response_submitted#dismissal_request_secret_scanning) <SupportStatus status="unsupported" />

## exemption\_request\_push\_ruleset

* [`cancelled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=cancelled#exemption_request_push_ruleset) <SupportStatus status="unsupported" />
* [`completed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=completed#exemption_request_push_ruleset) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#exemption_request_push_ruleset) <SupportStatus status="unsupported" />
* [`response_dismissed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=response_dismissed#exemption_request_push_ruleset) <SupportStatus status="unsupported" />
* [`response_submitted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=response_submitted#exemption_request_push_ruleset) <SupportStatus status="unsupported" />

## fork

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#fork) <SupportStatus status="never" />

## github\_app\_authorization

* [`revoked`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=revoked#github_app_authorization) <SupportStatus status="unsupported" />

## gollum

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#gollum) <SupportStatus status="never" />

## installation

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#installation) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#installation) <SupportStatus status="unsupported" />
* [`new_permissions_accepted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=new_permissions_accepted#installation) <SupportStatus status="unsupported" />
* [`suspend`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=suspend#installation) <SupportStatus status="unsupported" />
* [`unsuspend`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unsuspend#installation) <SupportStatus status="unsupported" />

## installation\_repositories

* [`added`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=added#installation_repositories) <SupportStatus status="unsupported" />
* [`removed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=removed#installation_repositories) <SupportStatus status="unsupported" />

## installation\_target

* [`renamed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=renamed#installation_target) <SupportStatus status="unsupported" />

## issue\_comment

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#issue_comment) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#issue_comment) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#issue_comment) <SupportStatus status="unsupported" />
* [`pinned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=pinned#issue_comment) <SupportStatus status="unsupported" />
* [`unpinned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unpinned#issue_comment) <SupportStatus status="unsupported" />

## issue\_dependencies

* [`blocked_by_added`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=blocked_by_added#issue_dependencies) <SupportStatus status="unsupported" />
* [`blocked_by_removed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=blocked_by_removed#issue_dependencies) <SupportStatus status="unsupported" />
* [`blocking_added`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=blocking_added#issue_dependencies) <SupportStatus status="unsupported" />
* [`blocking_removed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=blocking_removed#issue_dependencies) <SupportStatus status="unsupported" />

## issues

* [`assigned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=assigned#issues) <SupportStatus status="unsupported" />
* [`closed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=closed#issues) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#issues) <SupportStatus status="unsupported" />
* [`demilestoned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=demilestoned#issues) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#issues) <SupportStatus status="unsupported" />
* [`field_added`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=field_added#issues) <SupportStatus status="unsupported" />
* [`field_removed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=field_removed#issues) <SupportStatus status="unsupported" />
* [`labeled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=labeled#issues) <SupportStatus status="unsupported" />
* [`locked`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=locked#issues) <SupportStatus status="unsupported" />
* [`milestoned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=milestoned#issues) <SupportStatus status="unsupported" />
* [`opened`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=opened#issues) <SupportStatus status="unsupported" />
* [`pinned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=pinned#issues) <SupportStatus status="unsupported" />
* [`reopened`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=reopened#issues) <SupportStatus status="unsupported" />
* [`transferred`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=transferred#issues) <SupportStatus status="unsupported" />
* [`typed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=typed#issues) <SupportStatus status="unsupported" />
* [`unassigned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unassigned#issues) <SupportStatus status="unsupported" />
* [`unlabeled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unlabeled#issues) <SupportStatus status="unsupported" />
* [`unlocked`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unlocked#issues) <SupportStatus status="unsupported" />
* [`unpinned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unpinned#issues) <SupportStatus status="unsupported" />
* [`untyped`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=untyped#issues) <SupportStatus status="unsupported" />

## label

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#label) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#label) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#label) <SupportStatus status="unsupported" />

## marketplace\_purchase

* [`cancelled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=cancelled#marketplace_purchase) <SupportStatus status="never" />
* [`changed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=changed#marketplace_purchase) <SupportStatus status="never" />
* [`pending_change`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=pending_change#marketplace_purchase) <SupportStatus status="never" />
* [`pending_change_cancelled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=pending_change_cancelled#marketplace_purchase) <SupportStatus status="never" />
* [`purchased`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=purchased#marketplace_purchase) <SupportStatus status="never" />

## member

* [`added`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=added#member) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#member) <SupportStatus status="unsupported" />
* [`removed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=removed#member) <SupportStatus status="unsupported" />

## membership

* [`added`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=added#membership) <SupportStatus status="unsupported" />
* [`removed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=removed#membership) <SupportStatus status="unsupported" />

## merge\_group

* [`checks_requested`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=checks_requested#merge_group) <SupportStatus status="unsupported" />
* [`destroyed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=destroyed#merge_group) <SupportStatus status="unsupported" />

## meta

* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#meta) <SupportStatus status="unsupported" />

## milestone

* [`closed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=closed#milestone) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#milestone) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#milestone) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#milestone) <SupportStatus status="unsupported" />
* [`opened`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=opened#milestone) <SupportStatus status="unsupported" />

## org\_block

* [`blocked`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=blocked#org_block) <SupportStatus status="unsupported" />
* [`unblocked`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unblocked#org_block) <SupportStatus status="unsupported" />

## organization

* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#organization) <SupportStatus status="unsupported" />
* [`member_added`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=member_added#organization) <SupportStatus status="unsupported" />
* [`member_invited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=member_invited#organization) <SupportStatus status="unsupported" />
* [`member_removed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=member_removed#organization) <SupportStatus status="unsupported" />
* [`renamed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=renamed#organization) <SupportStatus status="unsupported" />

## organization\_custom\_property

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#organization_custom_property) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#organization_custom_property) <SupportStatus status="unsupported" />
* [`updated`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=updated#organization_custom_property) <SupportStatus status="unsupported" />

## organization\_custom\_property\_values

* [`updated`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=updated#organization_custom_property_values) <SupportStatus status="unsupported" />

## package

* [`published`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=published#package) <SupportStatus status="unsupported" />
* [`updated`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=updated#package) <SupportStatus status="unsupported" />

## page\_build

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#page_build) <SupportStatus status="unsupported" />

## personal\_access\_token\_request

* [`approved`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=approved#personal_access_token_request) <SupportStatus status="unsupported" />
* [`cancelled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=cancelled#personal_access_token_request) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#personal_access_token_request) <SupportStatus status="unsupported" />
* [`denied`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=denied#personal_access_token_request) <SupportStatus status="unsupported" />

## ping

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#ping) <SupportStatus status="unsupported" />

## project

* [`closed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=closed#project) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#project) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#project) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#project) <SupportStatus status="unsupported" />
* [`reopened`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=reopened#project) <SupportStatus status="unsupported" />

## project\_card

* [`converted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=converted#project_card) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#project_card) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#project_card) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#project_card) <SupportStatus status="unsupported" />
* [`moved`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=moved#project_card) <SupportStatus status="unsupported" />

## project\_column

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#project_column) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#project_column) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#project_column) <SupportStatus status="unsupported" />
* [`moved`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=moved#project_column) <SupportStatus status="unsupported" />

## projects\_v2

* [`closed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=closed#projects_v2) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#projects_v2) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#projects_v2) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#projects_v2) <SupportStatus status="unsupported" />
* [`reopened`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=reopened#projects_v2) <SupportStatus status="unsupported" />

## projects\_v2\_item

* [`archived`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=archived#projects_v2_item) <SupportStatus status="unsupported" />
* [`converted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=converted#projects_v2_item) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#projects_v2_item) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#projects_v2_item) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#projects_v2_item) <SupportStatus status="unsupported" />
* [`reordered`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=reordered#projects_v2_item) <SupportStatus status="unsupported" />
* [`restored`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=restored#projects_v2_item) <SupportStatus status="unsupported" />

## projects\_v2\_status\_update

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#projects_v2_status_update) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#projects_v2_status_update) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#projects_v2_status_update) <SupportStatus status="unsupported" />

## public

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#public) <SupportStatus status="unsupported" />

## pull\_request

* [`assigned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=assigned#pull_request) <SupportStatus status="unsupported" />
* [`auto_merge_disabled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=auto_merge_disabled#pull_request) <SupportStatus status="unsupported" />
* [`auto_merge_enabled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=auto_merge_enabled#pull_request) <SupportStatus status="unsupported" />
* [`closed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=closed#pull_request) <SupportStatus status="unsupported" />
* [`converted_to_draft`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=converted_to_draft#pull_request) <SupportStatus status="unsupported" />
* [`demilestoned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=demilestoned#pull_request) <SupportStatus status="unsupported" />
* [`dequeued`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=dequeued#pull_request) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#pull_request) <SupportStatus status="unsupported" />
* [`enqueued`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=enqueued#pull_request) <SupportStatus status="unsupported" />
* [`labeled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=labeled#pull_request) <SupportStatus status="unsupported" />
* [`locked`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=locked#pull_request) <SupportStatus status="unsupported" />
* [`milestoned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=milestoned#pull_request) <SupportStatus status="unsupported" />
* [`opened`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=opened#pull_request) <SupportStatus status="unsupported" />
* [`ready_for_review`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=ready_for_review#pull_request) <SupportStatus status="unsupported" />
* [`reopened`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=reopened#pull_request) <SupportStatus status="unsupported" />
* [`review_request_removed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=review_request_removed#pull_request) <SupportStatus status="unsupported" />
* [`review_requested`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=review_requested#pull_request) <SupportStatus status="unsupported" />
* [`synchronize`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=synchronize#pull_request) <SupportStatus status="unsupported" />
* [`unassigned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unassigned#pull_request) <SupportStatus status="unsupported" />
* [`unlabeled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unlabeled#pull_request) <SupportStatus status="unsupported" />
* [`unlocked`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unlocked#pull_request) <SupportStatus status="unsupported" />

## pull\_request\_review

* [`dismissed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=dismissed#pull_request_review) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#pull_request_review) <SupportStatus status="unsupported" />
* [`submitted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=submitted#pull_request_review) <SupportStatus status="unsupported" />

## pull\_request\_review\_comment

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#pull_request_review_comment) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#pull_request_review_comment) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#pull_request_review_comment) <SupportStatus status="unsupported" />

## pull\_request\_review\_thread

* [`resolved`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=resolved#pull_request_review_thread) <SupportStatus status="unsupported" />
* [`unresolved`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unresolved#pull_request_review_thread) <SupportStatus status="unsupported" />

## push

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#push) <SupportStatus status="unsupported" />

## registry\_package

* [`published`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=published#registry_package) <SupportStatus status="unsupported" />
* [`updated`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=updated#registry_package) <SupportStatus status="unsupported" />

## release

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#release) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#release) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#release) <SupportStatus status="unsupported" />
* [`prereleased`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=prereleased#release) <SupportStatus status="unsupported" />
* [`published`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=published#release) <SupportStatus status="unsupported" />
* [`released`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=released#release) <SupportStatus status="unsupported" />
* [`unpublished`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unpublished#release) <SupportStatus status="unsupported" />

## repository

* [`archived`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=archived#repository) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#repository) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#repository) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#repository) <SupportStatus status="unsupported" />
* [`privatized`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=privatized#repository) <SupportStatus status="unsupported" />
* [`publicized`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=publicized#repository) <SupportStatus status="unsupported" />
* [`renamed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=renamed#repository) <SupportStatus status="unsupported" />
* [`transferred`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=transferred#repository) <SupportStatus status="unsupported" />
* [`unarchived`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unarchived#repository) <SupportStatus status="unsupported" />

## repository\_advisory

* [`published`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=published#repository_advisory) <SupportStatus status="unsupported" />
* [`reported`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=reported#repository_advisory) <SupportStatus status="unsupported" />

## repository\_dispatch

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#repository_dispatch) <SupportStatus status="unsupported" />

## repository\_import

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#repository_import) <SupportStatus status="unsupported" />

## repository\_ruleset

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#repository_ruleset) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#repository_ruleset) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#repository_ruleset) <SupportStatus status="unsupported" />

## repository\_vulnerability\_alert

* [`create`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=create#repository_vulnerability_alert) <SupportStatus status="unsupported" />
* [`dismiss`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=dismiss#repository_vulnerability_alert) <SupportStatus status="unsupported" />
* [`reopen`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=reopen#repository_vulnerability_alert) <SupportStatus status="unsupported" />
* [`resolve`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=resolve#repository_vulnerability_alert) <SupportStatus status="unsupported" />

## secret\_scanning\_alert

* [`assigned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=assigned#secret_scanning_alert) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#secret_scanning_alert) <SupportStatus status="unsupported" />
* [`publicly_leaked`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=publicly_leaked#secret_scanning_alert) <SupportStatus status="unsupported" />
* [`reopened`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=reopened#secret_scanning_alert) <SupportStatus status="unsupported" />
* [`resolved`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=resolved#secret_scanning_alert) <SupportStatus status="unsupported" />
* [`unassigned`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=unassigned#secret_scanning_alert) <SupportStatus status="unsupported" />
* [`validated`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=validated#secret_scanning_alert) <SupportStatus status="unsupported" />

## secret\_scanning\_alert\_location

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#secret_scanning_alert_location) <SupportStatus status="unsupported" />

## secret\_scanning\_scan

* [`completed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=completed#secret_scanning_scan) <SupportStatus status="unsupported" />

## security\_advisory

* [`published`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=published#security_advisory) <SupportStatus status="unsupported" />
* [`updated`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=updated#security_advisory) <SupportStatus status="unsupported" />
* [`withdrawn`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=withdrawn#security_advisory) <SupportStatus status="unsupported" />

## security\_and\_analysis

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#security_and_analysis) <SupportStatus status="unsupported" />

## sponsorship

* [`cancelled`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=cancelled#sponsorship) <SupportStatus status="never" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#sponsorship) <SupportStatus status="never" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#sponsorship) <SupportStatus status="never" />
* [`pending_cancellation`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=pending_cancellation#sponsorship) <SupportStatus status="never" />
* [`pending_tier_change`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=pending_tier_change#sponsorship) <SupportStatus status="never" />
* [`tier_changed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=tier_changed#sponsorship) <SupportStatus status="never" />

## star

* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#star) <SupportStatus status="never" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#star) <SupportStatus status="never" />

## status

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#status) <SupportStatus status="unsupported" />

## sub\_issues

* [`parent_issue_added`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=parent_issue_added#sub_issues) <SupportStatus status="unsupported" />
* [`parent_issue_removed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=parent_issue_removed#sub_issues) <SupportStatus status="unsupported" />
* [`sub_issue_added`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=sub_issue_added#sub_issues) <SupportStatus status="unsupported" />
* [`sub_issue_removed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=sub_issue_removed#sub_issues) <SupportStatus status="unsupported" />

## team

* [`added_to_repository`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=added_to_repository#team) <SupportStatus status="unsupported" />
* [`created`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=created#team) <SupportStatus status="unsupported" />
* [`deleted`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=deleted#team) <SupportStatus status="unsupported" />
* [`edited`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=edited#team) <SupportStatus status="unsupported" />
* [`removed_from_repository`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=removed_from_repository#team) <SupportStatus status="unsupported" />

## team\_add

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#team_add) <SupportStatus status="unsupported" />

## watch

* [`started`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=started#watch) <SupportStatus status="unsupported" />

## workflow\_dispatch

* [`default`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=default#workflow_dispatch) <SupportStatus status="unsupported" />

## workflow\_job

* [`completed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=completed#workflow_job) <SupportStatus status="unsupported" />
* [`in_progress`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=in_progress#workflow_job) <SupportStatus status="unsupported" />
* [`queued`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=queued#workflow_job) <SupportStatus status="unsupported" />
* [`waiting`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=waiting#workflow_job) <SupportStatus status="unsupported" />

## workflow\_run

* [`completed`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=completed#workflow_run) <SupportStatus status="unsupported" />
* [`in_progress`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=in_progress#workflow_run) <SupportStatus status="unsupported" />
* [`requested`](https://docs.github.com/enterprise-cloud@latest/webhooks/webhook-events-and-payloads?actionType=requested#workflow_run) <SupportStatus status="unsupported" />
