Octokit cookbook

This cookbook provides Chef resources to communicate with Github using Octokit tookit.

Resources

Currently the only resource provided by this cookbook is Github User SSH Key.

github_user_key

Example usage:

github_user_key 'key' do
  login 'login'
  password 'token'
  title 'title'
  key 'ssh-rsa ...'
  action :create_or_replace
end

Supported actions:

PRs for other resources are welcome!