github-add-collab

Add collaborators to GitHub repos

MIT License

Downloads
22
Stars
24
Committers
3

github-add-collab Build Status

Add collaborators to GitHub repos

Install

$ npm install github-add-collab

Usage

const githubAddCollab = require('github-add-collab');

githubAddCollab('johndoe', ['github-add-collab', 'yeoman/yo'], {
	token: '523ef691191'
}).then(data => {
	console.log('Successfully added user johndoe to github-add-collab and yeoman/yo');
});

API

githubAddCollab(user, [repos], options)

Returns a promise for an array.

user

Required Type: string

Username to add as collaborator.

repos

Type: Array

Repos to add the collaborator to.

options

token

Required Type: string

Token to authenticate with. If you don't have a token you can generate a new one here.

addToAll

Type: boolean

If no repos are defined and this option is set to true it'll add the user to all repositories that the token has access to.

addToSources

Type: boolean

If no repos are defined and this option is set to true it'll add the user to all non-forked repositories that the token has access to.

Related

License

MIT © Kevin Mårtensson