0 votes
in GitHub by
What is merge_group Webhook event type in GitHub?

1 Answer

0 votes
by

merge_group

Webhook event payloadActivity typesGITHUB_SHAGITHUB_REF
merge_groupchecks_requestedSHA of the merge groupRef of the merge group

Note: More than one activity type triggers this event. Although only the checks_requested activity type is supported, specifying the activity type will keep your workflow specific if more activity types are added in the future. 

Runs your workflow when a pull request is added to a merge queue, which adds the pull request to a merge group. 

For example, you can run a workflow when the checks_requested activity has occurred.

on:
  merge_group:
    types: [checks_requested]
...