File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ let github_action ~event ~action json =
197
197
| "check_suite" , "requested" ->
198
198
Ok (CheckSuiteRequested (check_suite_info_of_json json))
199
199
| _ ->
200
- Ok (UnsupportedEvent " Unsupported GitHub action. " )
200
+ Ok (UnsupportedEvent (f " Unsupported GitHub action %s / %s. " event action) )
201
201
202
202
let github_event ~event json =
203
203
match event with
@@ -224,7 +224,7 @@ let github_event ~event json =
224
224
| ref_type ->
225
225
Error (f " Unexpected ref_type: %s" ref_type) )
226
226
| _ ->
227
- Ok (UnsupportedEvent " Unsupported GitHub event. " )
227
+ Ok (UnsupportedEvent (f " Unsupported GitHub event %s. " event) )
228
228
229
229
let receive_github ~secret headers body =
230
230
let open Result.Monad_infix in
You can’t perform that action at this time.
0 commit comments