File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,8 +63,8 @@ defmodule Librecov.Services.Github.Checks do
6363 }
6464 ) do
6565 Logger . info ( "Finished check of commit #{ commit } with diff: #{ cov_dif } coverage: #{ cov } ." )
66- Logger . info ( "#{ commit_check |> Map . from_struct ( ) |> Jason . encode! ( pretty: true ) } " )
67- Logger . info ( "#{ diff_check |> Map . from_struct ( ) |> Jason . encode! ( pretty: true ) } " )
66+ Logger . info ( "#{ commit_check |> inspect ( ) |> Jason . encode! ( pretty: true ) } " )
67+ Logger . info ( "#{ diff_check |> inspect ( ) |> Jason . encode! ( pretty: true ) } " )
6868 { :ok , [ commit_check , diff_check ] }
6969 end
7070 end
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ defmodule Librecov.GithubService do
1818 Logger . debug ( "Unhandled event: #{ event } " )
1919 end
2020
21- defp handle_check_suite ( "requested" , payload ) do
21+ defp handle_check_suite ( action , payload ) when action in [ "rerequested" , "requested" ] do
2222 % Event { id: UUID . uuid1 ( ) , topic: :check_suite_requested , data: payload } |> EventBus . notify ( )
2323 end
2424
You can’t perform that action at this time.
0 commit comments