Sync Labels and Milestones across Multiple repositories
npm install -g github-sync-labels-milestones
github-sync-labels-milestones <options>
-t, --token
[required] github personal access token with repo access-c, --config
[required] path to config file-v, --verbose
make output more verbose-s, --silent
oppress output-V, --version
output version--baseUrl
sset github baseUrl (see @octokit/rest)--timeout
set github request timeout (see @octokit/rest)-h, --help
output help message--no-color
disable colors
Get a personal access token under settings/tokens and ensure [repo] and [public_repo] scopes are activated
The configuration file needs to be valid JSON or YAML and describe an array of configuration objects.
[
{
"repositories": ["Jimdo/github-sync-labels-milestones", "Xiphe/example"],
"milestones": [
{
"previousTitles": ["Complete Everything"],
"title": "First Release",
"state": "open",
"description": "Tasks to be completed before release",
"due_on": "2015-09-15T23:59:59Z"
}
],
"labels": [
{
"previousNames": ["bug"],
"name": "type: bug",
"color": "fc2929"
},
{
"name": "type: feature request",
"state": "absent"
}
],
"options": {
"ignoreLabels": ["Xiphe/example"]
}
}
]
-
Array of repositories on which the labels and milestones should be synchronized
-
Array of milestones that should be synchronized
-
optional Array of labels that should be synchronized
-
optional Options
-
The title of the milestone
-
optional Array of titles this milestone had before. We will try to rename milestones found here to
title
instead of creating a new one -
optional The state of the milestone. Either
open
,closed
orabsent
.
Default:open
-
optional A description of the milestone
-
optional The milestone due date. This is a timestamp in ISO 8601 format:
YYYY-MM-DDTHH:MM:SSZ
(The time of the day is ignored)
-
The name of the label
-
optional A 6 character hex code, without the leading #, identifying the color
-
optional description for the label
-
optional Array of names this label had before. The new label will be added to issues with any of these and the previous labels will then be deleted.
-
optional Can be
present
orabsent
.
Default:present
-
optional Array of repositories whose labels should not be touched
-
optional Array of repositories whose milestones should not be touched
The MIT License
Copyright (c) 2017 - 2022 Hannes Diercks
Copyright (c) 2015 - 2016 Jimdo GmbHPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.