Your governor to help you sync stories between your private and public board.
npm install -g tracker-governor
Find your Tracker API Token and export it to TG_API_TOKEN
environment variable.
export TG_API_TOKEN=<your token>
sync
command synchronizes the story state between Public and Private projects
tracker-governor sync --help
Usage: sync [options]
sync state of public and private stories
Options:
-u, --public-project-id <id> Project ID of the public project
-r, --private-project-id <id> Project ID of the private project
-d, --dry-run Don't perform any changes, print actions
-y, --yes Automatic yes to prompts
-s, --silent Use with --yes to silently change all stories
-h, --help output usage information
server
commands starts the server which listens to new activity in the private project and wil update the state of the
public stories when the state of the private story is updated.
You have to add webhook URL of the server where the tracker-governor server
is run to your Private project settings.
tracker-governor server --help
Usage: server [options]
start server to listen for project activity and sync stories state
Options:
-u, --public-project-id <id> Project ID of the public project
-r, --private-project-id <id> Project ID of the private project
-h, --help output usage information