Method: Octokit::Client::Checks#create_check_run
- Defined in:
- lib/octokit/client/checks.rb
#create_check_run(repo, name, head_sha, options = {}) ⇒ Sawyer::Resource
Create a check run
25 26 27 28 29 30 |
# File 'lib/octokit/client/checks.rb', line 25 def create_check_run(repo, name, head_sha, = {}) [:name] = name [:head_sha] = head_sha post "#{Repository.path repo}/check-runs", end |