@@ -83,8 +83,8 @@ class GHAapp < Sinatra::Application
8383
8484 # Create a new check run with the status queued
8585 def create_check_run
86- # At time of writing, Octokit does not support the Checks API, but it does provide generic
87- # HTTP methods you can use:
86+ # At the time of writing, Octokit does not support the Checks API, but
87+ # it does provide generic HTTP methods you can use:
8888 # https://developer.github.com/v3/checks/runs/#create-a-check-run
8989 check_run = @installation_client . post (
9090 "repos/#{ @payload [ 'repository' ] [ 'full_name' ] } /check-runs" ,
@@ -109,8 +109,8 @@ def initiate_check_run
109109 # to 'in_progress' and run the CI process. When the CI finishes, you'll
110110 # update the check run status to 'completed' and add the CI results.
111111
112- # At time of writing, Octokit doesn't support the Checks API, but it does provide generic
113- # HTTP methods you can use:
112+ # At the time of writing, Octokit doesn't support the Checks API, but
113+ # it does provide generic HTTP methods you can use:
114114 # https://developer.github.com/v3/checks/runs/#update-a-check-run
115115 updated_check_run = @installation_client . patch (
116116 "repos/#{ @payload [ 'repository' ] [ 'full_name' ] } /check-runs/#{ @payload [ 'check_run' ] [ 'id' ] } " ,
0 commit comments