Skip to content

Commit 496e590

Browse files
committed
Support GitHub merge queues
Add merge_group as a valid event. Allows the action to run against commits that are part of a merge queue. Example failure: github.com/submariner-io/coastguard/actions/runs/4618846627/jobs/8166807512 Signed-off-by: Daniel Farrell <[email protected]>
1 parent 8673d84 commit 496e590

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const core = require('@actions/core')
22
const github = require('@actions/github')
33

4-
const validEvent = ['pull_request']
4+
const validEvent = ['pull_request', 'merge_group']
55

66
async function main() {
77
try {

0 commit comments

Comments
 (0)