An open API service indexing awesome lists of open source software.

https://github.com/fabiospampinato/autogit-plugin-github-sync-keywords

A plugin for synchronizing the keywords with GitHub.
https://github.com/fabiospampinato/autogit-plugin-github-sync-keywords

autogit github keywords plugin sync

Last synced: about 1 year ago
JSON representation

A plugin for synchronizing the keywords with GitHub.

Awesome Lists containing this project

README

          

# Autogit Plugin - Github Sync Keywords

A plugin for synchronizing the keywords with GitHub.

## Install

```sh
npm install --save autogit-plugin-github-sync-keywords
```

## Usage

#### Options

This plugin uses the following options object:

```js
{
token: ''
}
```

#### Configuration

Add this plugin to a command:

```js
const syncKeywords = require ( 'autogit-plugin-github-sync-keywords' );

module.exports = {
commands: {
'my-command': [
syncKeywords ({ token: 'MY_GITHUB_TOKEN' })
]
}
}
```

## License

MIT © Fabio Spampinato