Skip to content

Commit

Permalink
Allow Github merge queues
Browse files Browse the repository at this point in the history
  • Loading branch information
mhemmings authored and thafryer committed Oct 31, 2023
1 parent ea85a13 commit 7fb819c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action-src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ const getBuildInfo = (event: typeof context) => {
switch (event.eventName) {
case 'pull_request':
case 'pull_request_review':
case 'pull_request_target': {
case 'pull_request_target':
case 'merge_group': {
const { head } = event.payload.pull_request;
return {
sha: head.sha,
Expand Down

0 comments on commit 7fb819c

Please sign in to comment.