Automate GitHub + Trello
Where the code — and half the process — lives. Boards and cards — simple enough to automate deeply. Put an agent between them and the hand-off stops being manual: it reads, decides, acts, and shows its work.
First-Pass Reviewer is a ready-made agent built around GitHub; point its last step at Trello to finish this hand-off.
Automations teams run
Unlike field-mapping automation, the step in the middle is an agent: it can summarise, classify, judge and draft, not merely copy values from GitHub into Trello.
When a PR opens or merges in GitHub…
…an agent can create and move cards in Trello — after reading the context and deciding it should.
When an issue is filed in GitHub…
…an agent can update checklists and labels in Trello — after reading the context and deciding it should.
When a release is cut in GitHub…
…an agent can summarise a board in Trello — after reading the context and deciding it should.
When a card is created or moved in Trello…
…an agent can comment on PRs and issues in GitHub — with the reasoning recorded in the run’s receipt.
When a due date approaches in Trello…
…an agent can open issues with structured detail in GitHub — with the reasoning recorded in the run’s receipt.
When a checklist completes in Trello…
…an agent can draft release notes in GitHub — with the reasoning recorded in the run’s receipt.
GitHub to Trello, in three nodes
The two ends are the github-api node and a custom-api call to api.trello.com. What makes this different from a zap is the middle node — it forms a view about the GitHub item before anything reaches Trello.
{
"id": "5ffd0622-e78e-492d-a840-99d3f01d105a",
"name": "GitHub → Trello",
"nodes": [
{
"id": "ab9fe598-ad02-4b17-ac50-c4f36e6bfef2",
"text": "Watch GitHub",
"x": 512,
"y": 144,
"isEditing": false,
"type": "github-api",
"icon": "connect",
"category": "trigger",
"isSelected": false,
"parameters": {},
"description": "Interact with GitHub: repos, branches, files, issues, comments, pull requests, reviews, releases, Actions/CI, and search.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
},
{
"id": "00ced482-2b19-4041-afc7-9bc960dc29a2",
"text": "Read it and decide",
"x": 512,
"y": 336,
"isEditing": false,
"type": "agnt-agent",
"icon": "connect",
"category": "action",
"isSelected": false,
"parameters": {
"instructions": "Read the GitHub item. Decide whether it warrants action in Trello, and explain why."
},
"description": "Decides whether this GitHub item warrants anything in Trello.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
},
{
"id": "7916bda0-fa48-482e-a144-0bb460de6ebc",
"text": "Call Trello",
"x": 512,
"y": 528,
"isEditing": false,
"type": "custom-api",
"icon": "connect",
"category": "action",
"isSelected": false,
"parameters": {
"url": "https://api.trello.com/1/cards?key={key}&token={token}",
"method": "POST"
},
"description": "Writes into Trello over its API.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
}
],
"edges": [
{
"id": "c0d92a22-13bd-40d9-a152-e14b183ac31e",
"start": {
"id": "ab9fe598-ad02-4b17-ac50-c4f36e6bfef2",
"type": "output"
},
"end": {
"id": "00ced482-2b19-4041-afc7-9bc960dc29a2",
"type": "input"
},
"startX": 800,
"startY": 168,
"endX": 512,
"endY": 360
},
{
"id": "59f7136d-fce1-4fae-a729-4935089335f4",
"start": {
"id": "00ced482-2b19-4041-afc7-9bc960dc29a2",
"type": "output"
},
"end": {
"id": "7916bda0-fa48-482e-a144-0bb460de6ebc",
"type": "input"
},
"startX": 800,
"startY": 360,
"endX": 512,
"endY": 552
}
],
"zoomLevel": 1,
"canvasOffsetX": 0,
"canvasOffsetY": 0,
"isTinyNodeMode": false
}
Install First-Pass Reviewer
First-Pass Reviewer is a working agent built around GitHub. Install it, point its last step at Trello, and you have this hand-off without building it from an empty canvas.
Runs on your own machine · See what it does
What building this looks like
- Install AGNT — it runs on your own machine and needs no account to start.
- Authorise Trello (an API key pasted into the vault) and GitHub (one OAuth sign-in). Nothing is stored anywhere but your disk.
- Describe the job in plain language, or paste the definition above; github-api does the reading and custom-api the writing.
- Gate anything you would not want done unattended, then let it run and read the first receipt end to end.
GitHub and Trello — common questions
Can I connect GitHub to Trello without writing code?
No code is required. Add both connections in the vault (GitHub uses one OAuth sign-in, Trello uses an API key pasted into the vault), then either install a marketplace workflow for this pair or drag the two nodes onto the canvas and put an agent between them.
How is this different from a field-mapping GitHub to Trello automation?
A field mapping copies values and breaks on the first record nobody anticipated. The middle step here reads the GitHub item in full and decides — whether it matters, how to summarise it, and what belongs in Trello. Deciding to do nothing is a valid outcome, which no mapping can express.
Does my GitHub and Trello data leave my machine?
Your credentials stay in a vault on your own disk rather than in someone else’s cloud. The only calls made are the ones the workflow needs: GitHub, Trello, and your chosen model provider — which can be a local one.
What does a GitHub and Trello run leave behind?
Every run is recorded end to end — the GitHub items examined, the decision and its reasoning, the resulting Trello write. That record is what makes it reasonable to let this run unattended, and what lets you widen its remit on evidence.