github-label-sync: add page (#2967)

italian
Owen Voke 2019-05-18 09:58:16 +01:00 committed by Waldir Pimenta
parent 34e4c4c7b4
commit f3f3e29c95
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
# github-label-sync
> A command line interface for synchronising GitHub labels.
> Homepage: <https://npmjs.com/package/github-label-sync>.
- Synchronise labels using a local `labels.json` file:
`github-label-sync --access-token {{token}} {{repository_name}}`
- Synchronise labels using a specific labels JSON file:
`github-label-sync --access-token {{token}} --labels {{url|path/to/json_file}} {{repository_name}}`
- Perform a dry run instead of actually synchronising labels:
`github-label-sync --access-token {{token}} --dry-run {{repository_name}}`
- Keep labels that aren't in `labels.json`:
`github-label-sync --access-token {{token}} --allow-added-labels {{repository_name}}`
- Synchronise using the `GITHUB_ACCESS_TOKEN` environment variable:
`github-label-sync {{repository_name}}`