Automate GitHub + Jira
Where the code — and half the process — lives. The ticket system of record for engineering work. Put an agent between them and the hand-off stops being manual: it reads, decides, acts, and shows its work.
First-Pass Reviewer already works across GitHub and Jira — free, and it runs on your machine.
Automations teams run
These are not field mappings. An agent reads the GitHub side, works out what it means, and only then decides what — if anything — should happen in Jira.
When a PR opens or merges in GitHub…
…an agent can create and update issues in Jira — after reading the context and deciding it should.
When an issue is filed in GitHub…
…an agent can transition tickets with comments in Jira — after reading the context and deciding it should.
When a release is cut in GitHub…
…an agent can summarise sprint state in Jira — after reading the context and deciding it should.
When an issue is created or transitions in Jira…
…an agent can comment on PRs and issues in GitHub — with the reasoning recorded in the run’s receipt.
When a sprint starts in Jira…
…an agent can open issues with structured detail in GitHub — with the reasoning recorded in the run’s receipt.
When a priority changes in Jira…
…an agent can draft release notes in GitHub — with the reasoning recorded in the run’s receipt.
The GitHub and Jira hand-off, setup template
Start with the github-api node and a custom-api call to {yoursite}.atlassian.net. Configure the GitHub source payload, the agent input, and the Jira operation. The sequential template does not implement conditional writes or approval by itself.
This is a schema-checked starting point, not an end-to-end tested automation. Replace every CONFIGURE_ value, choose the operations you intend, connect credentials and map source outputs into later inputs. An edge orders steps; it does not supply a condition, an approval gate or a field mapping. Add and test those controls explicitly before any write. Cloud APIs and model providers may receive data. Keep the workflow inactive until tested with fixtures.
{
"id": "8f88ca72-e57e-4b1d-a85d-f32b324bdcce",
"name": "GitHub → Jira",
"nodes": [
{
"id": "38b0c38f-167d-48c0-a82a-9711ca29a21c",
"text": "Run on a schedule",
"x": 512,
"y": 144,
"isEditing": false,
"type": "trigger-timer",
"icon": "connect",
"category": "trigger",
"isSelected": false,
"parameters": {
"fireOnStart": "No",
"scheduleType": "Interval",
"schedule": "Every 15 Minutes"
},
"description": "Setup template for Timer Trigger. This trigger node fires the workflow at specified intervals or at a specific time. Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
},
{
"id": "a39db20f-84b5-42f2-ab4b-6e7d740928c0",
"text": "Read GitHub",
"x": 512,
"y": 336,
"isEditing": false,
"type": "github-api",
"icon": "connect",
"category": "action",
"isSelected": false,
"parameters": {
"action": "GET_AUTHENTICATED_USER",
"owner": "CONFIGURE_OWNER",
"repo": "CONFIGURE_REPO"
},
"description": "Setup template for GitHub API. Interact with GitHub: repos, branches, files, issues, comments, pull requests, reviews, releases, Actions/CI, and search. Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
},
{
"id": "5903cf64-2135-42c8-af9b-1dd6fb89949c",
"text": "Review source and draft",
"x": 512,
"y": 528,
"isEditing": false,
"type": "agnt-agent",
"icon": "connect",
"category": "action",
"isSelected": false,
"parameters": {
"agentId": "CONFIGURE_AGENTID",
"message": "Read the GitHub item. Decide whether it warrants action in Jira, and explain why.\nSource input: CONFIGURE_SOURCE_INPUT. Produce a reviewable draft only; do not take external actions."
},
"description": "Setup template for Agent Chat. Chat with an AI agent from your agent library. Select an agent and send messages to interact with it within your workflow. Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
},
{
"id": "c0db6b81-5520-4e95-a99e-68c6d80d875e",
"text": "Call Jira",
"x": 512,
"y": 720,
"isEditing": false,
"type": "custom-api",
"icon": "connect",
"category": "action",
"isSelected": false,
"parameters": {
"url": "https://{yoursite}.atlassian.net/rest/api/3/issue",
"method": "GET",
"authType": "None",
"query": "",
"headers": "{}"
},
"description": "Setup template for Custom API Request. This action node makes a custom API request to any endpoint with configurable method, headers, and authentication. Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
}
],
"edges": [
{
"id": "1b31872f-5440-4845-ae3a-e684ff2577ea",
"start": {
"id": "38b0c38f-167d-48c0-a82a-9711ca29a21c",
"type": "output"
},
"end": {
"id": "a39db20f-84b5-42f2-ab4b-6e7d740928c0",
"type": "input"
},
"startX": 800,
"startY": 168,
"endX": 512,
"endY": 360
},
{
"id": "a173ebd7-f751-4f18-a963-d5a1438185a0",
"start": {
"id": "a39db20f-84b5-42f2-ab4b-6e7d740928c0",
"type": "output"
},
"end": {
"id": "5903cf64-2135-42c8-af9b-1dd6fb89949c",
"type": "input"
},
"startX": 800,
"startY": 360,
"endX": 512,
"endY": 552
},
{
"id": "3cb5905b-3779-41e5-a1d8-55fc9c58d2ea",
"start": {
"id": "5903cf64-2135-42c8-af9b-1dd6fb89949c",
"type": "output"
},
"end": {
"id": "c0db6b81-5520-4e95-a99e-68c6d80d875e",
"type": "input"
},
"startX": 800,
"startY": 552,
"endX": 512,
"endY": 744
}
],
"zoomLevel": 1,
"canvasOffsetX": 0,
"canvasOffsetY": 0,
"isTinyNodeMode": false
}
Configure GitHub API
Interact with GitHub: repos, branches, files, issues, comments, pull requests, reviews, releases, Actions/CI, and search.
- action — The action to perform on GitHub Current example:
GET_AUTHENTICATED_USER. - owner — The owner of the repository (not needed for account-level or search actions) Current example:
CONFIGURE_OWNER. - repo — The name of the repository (for CREATE_REPO: the name of the new repository) Current example:
CONFIGURE_REPO.
Configure Custom API Request
This action node makes a custom API request to any endpoint with configurable method, headers, and authentication.
- url — The URL of the API endpoint Current example:
https://{yoursite}.atlassian.net/rest/api/3/issue. - method — The HTTP method for the request Current example:
GET. - authType — The type of authentication Current example:
None. - query — Query parameters for the request (e.g., 'key1=value1&key2=value2') Current example:
. - headers — Optional headers for the request. e.g., {"Content-Type": "application/json"} Current example:
{}.
Install First-Pass Reviewer
First-Pass Reviewer already uses both GitHub and Jira, so installing it gives you this exact hand-off wired up — connected, editable, and running on your own machine.
Runs on your own machine · See what it does
Build it in AGNT
- Get AGNT Community Core. Free, local, no sign-up needed to run a workflow.
- Add both connections to the vault — GitHub takes one OAuth sign-in, Jira takes one OAuth sign-in.
- Configure the nodes above, or start from a marketplace workflow and edit it. The agent in the middle is the part worth spending time on.
- Run it once with an approval gate in place. The receipt tells you what it read, what it concluded, and what it changed in Jira.
GitHub and Jira — common questions
Can I connect GitHub to Jira without writing code?
No code is required. Add both connections in the vault (GitHub uses one OAuth sign-in, Jira uses one OAuth sign-in), 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 Jira automation?
Mapping tools move data; this reasons about it. Rather than copying a field into Jira, the agent can weigh what arrived from GitHub, classify it against criteria you wrote in prose, draft something new, and act only when it is warranted.
Does my GitHub and Jira data leave my machine?
Not to us. AGNT runs locally and both sets of credentials are encrypted on your own disk. Outbound traffic goes only to GitHub, Jira and whichever model you chose — and pointing that at Ollama or LM Studio keeps everything on your hardware.
What does a GitHub and Jira run leave behind?
A receipt: what was read in GitHub, which tools ran with which arguments, what the agent concluded, and what it wrote to Jira. Anything consequential can sit behind an approval gate so a person signs off before it happens.