github-add-collab

2.0.2 • Public • Published

github-add-collab Build Status

Add collaborators to GitHub repos

Install

$ npm install --save 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

Package Sidebar

Install

npm i github-add-collab

Weekly Downloads

3

Version

2.0.2

License

MIT

Last publish

Collaborators

  • kevva
  • sindresorhus