github-sync-labels-milestones v0.4.3
github-sync-labels-milestones
Sync Labels and Milestones across Multiple repositories
Install
npm install -g github-sync-labels-milestones
CLI usage
github-sync-labels-milestones <options>
Options
-t, --token
required(https://github.com/settings/tokens/new)-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
Configuration File
The configuration file needs to be valid JSON or YAML and describe an array of configuration objects.
Example (config.json)
[
{
"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"]
}
}
]configuration object shape
repositoriesArray of repositories on which the labels and milestones should be synchronized
milestonesArray of milestones that should be synchronized
labelsoptional Array of labels that should be synchronized
optionsoptional Options
milestone declaration shape
titleThe title of the milestone
previousTitlesoptional Array of titles this milestone had before. We will try to rename milestones found here to
titleinstead of creating a new onestateoptional The state of the milestone. Either
open,closedorabsent.
Default:opendescriptionoptional A description of the milestone
due_onoptional The milestone due date. This is a timestamp in ISO 8601 format:
YYYY-MM-DDTHH:MM:SSZ(The time of the day is ignored)
label declaration shape
nameThe name of the label
coloroptional A 6 character hex code, without the leading #, identifying the color
descriptionoptional description for the label
previousNamesoptional 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.
stateoptional Can be
presentorabsent.
Default:present
Options
ignoreLabelsoptional Array of repositories whose labels should not be touched
ignoreMilestonesoptional Array of repositories whose milestones should not be touched
LICENSE
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.