# import-trello-github **Repository Path**: mirrors_HubSpot/import-trello-github ## Basic Information - **Project Name**: import-trello-github - **Description**: Quick and dirty import Trello into GitHub issues - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-04-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Trello to GitHub issues Simple import of exported Trello cards into GitHub issues ## Requirements - Python 3.4 ## Label rewrites `--labelmaps` The `labelmaps` argument takes a JSON file with any of the following keys: - `labels` - `lists` Each of these will take the names described under them, and translate them to labels, or milestones as specified. **Example** ```json { "labels": { "Really Hard": {"label": "8 points"} }, "lists": { "Done": { "state": "closed" }, "Doing": { "label": ["in progress", "now"] }, "Next Up": { "milestone": "alpha 4", "label": "some label" }, "Beta icebox": { "milestone": "beta" } } } ``` ## Example For the Trello board at https://trello.com/b/zaFPjsli/dockci **mappings.json** ```json { "lists": { "Done": {"state": "closed" }, "Doing": { "label": "in progress" }, "Next Up": { "milestone": "alpha 4" }, "Beta icebox": { "milestone": "beta" } } } ``` ``` ./import-issues.py --loglevel DEBUG \ --statedir state \ --labelmaps mappings.json \ trello.json rickycook dockci \ my@email.com mypasswordhere ```