Skip to content

Commit 6cf42d6

Browse files
authored
workflow: run for merge_group events as well (#3)
For repos that use merge groups, this is required now. Ref.: https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#merge_group
1 parent 2d70fe5 commit 6cf42d6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/cla.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# The name of the file should not be changed as it is used in Org Ruleset
22
name: cla-check
3-
on: [pull_request]
3+
on:
4+
pull_request:
5+
merge_group:
6+
types: [checks_requested]
47

58
jobs:
69
cla-check:

0 commit comments

Comments
 (0)