

How to Sync GitHub Issues to Jira Tickets with Make
Automatically create Jira tickets when GitHub issues are opened, mapping title, description, labels, and assignee across platforms.
Steps and UI details are based on platform versions at time of writing β check each platform for the latest interface.
Best for
Development teams creating 50+ GitHub issues monthly who need automatic Jira ticket creation with field mapping.
Not ideal for
Teams with under 20 issues per month or those requiring complex business logic beyond basic field mapping.
Sync type
real-timeUse case type
syncReal-World Example
A 12-person SaaS development team uses this to automatically create Jira tickets for every GitHub issue, ensuring nothing falls through cracks during sprint planning. Before automation, developers manually copied issue details to Jira twice weekly, often missing critical bugs reported over weekends. Now support tickets become trackable Jira stories within 30 seconds of GitHub creation.
What Will This Cost?
Drag the slider to your expected monthly volume.
Each platform counts differently β Zapier: 1 task per trigger. Make: 1 operation per module per record. n8n: 1 execution per run.





Prices shown for annual billing. Based on published pricing as of April 2026.
Estimated ROI
1000
min saved/mo
$583
labor value/mo
Free
no platform cost
Based on ~2 min manual effort per operation at $35/hr fully loaded labor cost.
Implementation
Import this workflow directly into Make
Copy the pre-built Make blueprint and paste it straight into Make. All modules, filters, and field mappings are already configured β you just need to connect your accounts.
Before You Start
Make sure you have everything ready.
Optional
Field Mapping
Map these fields between your apps.
| Field | API Name | |
|---|---|---|
| Required | ||
| Issue Title | title | |
| Issue Description | body | |
| Issue Number | number | |
5 optional fieldsβΈ show
| Assignee | assignee.login |
| Labels | labels[].name |
| Repository Name | repository.name |
| Created Date | created_at |
| Issue URL | html_url |
Step-by-Step Setup
Scenarios > Create new scenario > GitHub > Watch Issues
Create new scenario
Set up a new Make scenario to monitor GitHub for new issues. This will be the foundation that triggers whenever someone creates an issue in your repository.
- 1Click 'Create a new scenario' from your Make dashboard
- 2Click the large + button in the center
- 3Search for 'GitHub' and select it from the app list
- 4Choose 'Watch Issues' as your trigger module
GitHub Module > Connection > Add
Connect GitHub account
Authenticate your GitHub account and select the repository to monitor. Make needs read access to watch for new issues and pull issue data.
- 1Click 'Add' next to the Connection field
- 2Select 'GitHub' connection type
- 3Click 'Sign in with GitHub' and authorize Make
- 4Enter a connection name like 'GitHub Main Account'
GitHub Module > Repository Settings
Configure repository settings
Select which repository to monitor and set up the webhook. Make will create a webhook in your GitHub repo to receive real-time notifications.
- 1Select your repository from the 'Repository' dropdown
- 2Set 'State' to 'Open' to only trigger on new issues
- 3Leave 'Labels' and 'Assignee' empty to catch all issues
- 4Click 'OK' to save the module settings
Scenario > Add Module > Jira Software > Create an Issue
Add Jira module
Add the Jira module that will create tickets. This module will receive data from GitHub and transform it into Jira's required format.
- 1Click the + button after the GitHub module
- 2Search for 'Jira Software' and select it
- 3Choose 'Create an Issue' from the action list
- 4Click 'OK' to add the module
Jira Module > Connection > Add
Connect Jira account
Authenticate with Jira and grant Make permission to create issues. You'll need an API token from your Jira account settings.
- 1Click 'Add' next to the Jira Connection field
- 2Enter your Jira domain (yourcompany.atlassian.net)
- 3Enter your email address
- 4Paste your Jira API token in the password field
Jira Module > Project Settings
Select Jira project
Choose which Jira project will receive the new tickets. The project determines available issue types and required fields for ticket creation.
- 1Select your target project from the 'Project' dropdown
- 2Choose 'Task' or 'Bug' as the Issue Type
- 3Verify the issue type matches your team's GitHub workflow
- 4Note which fields show as required (marked with *)
Jira Module > Issue Fields > Summary/Description
Map issue title and description
Connect GitHub issue data to Jira fields. The title and description are core fields that provide context for your development team.
- 1Click in the 'Summary' field and select 'Title' from GitHub data
- 2Click in the 'Description' field and select 'Body' from GitHub data
- 3Add 'GitHub Issue #' before the title using the 'Number' field
- 4Test the mapping by clicking 'Choose where to start'
Drop this into a Make custom function.
JavaScript β Custom Function{{if(1.assignee.login; 1.assignee.login; "unassigned-backlog")}}βΈ Show code
{{if(1.assignee.login; 1.assignee.login; "unassigned-backlog")}}... expand to see full code
{{if(1.assignee.login; 1.assignee.login; "unassigned-backlog")}}Jira Module > Issue Fields > Assignee
Map assignee field
Connect the GitHub issue assignee to the Jira assignee field. This ensures the right person gets notified in Jira when issues are created.
- 1Click in the 'Assignee' field
- 2Select 'Assignee > Login' from the GitHub data
- 3Add a fallback assignee in case GitHub issue is unassigned
- 4Enter a default Jira username or leave empty
Jira Module > Issue Fields > Labels
Handle GitHub labels
Transform GitHub labels into Jira labels or components. Labels help categorize and filter issues in both systems consistently.
- 1Click in the 'Labels' field
- 2Select 'Labels' from the GitHub data
- 3Click the toggle for 'Map' to enable array processing
- 4Map 'Labels > Name' to extract label text
Scenario > Run once
Test the scenario
Run a test to verify the integration works correctly. This creates a real Jira ticket from sample GitHub data to validate your field mapping.
- 1Click 'Run once' at the bottom of the screen
- 2Wait for the scenario to complete (usually 10-15 seconds)
- 3Check the execution log for any errors
- 4Verify a new ticket was created in your Jira project
Jira Module > Right-click > Add error handler
Configure error handling
Set up error handling to manage failed API calls and data issues. This prevents the entire scenario from breaking when individual issues fail to sync.
- 1Right-click the Jira module
- 2Select 'Add error handler'
- 3Choose 'Break' to stop processing that specific issue
- 4Add an email notification module to alert you of failures
Scenario > Activate Toggle
Activate the scenario
Turn on the scenario to start monitoring GitHub issues in real-time. Make will create a webhook in your GitHub repository for instant notifications.
- 1Click the 'ON' toggle in the bottom left
- 2Confirm you want to activate the scenario
- 3Check that the scheduling shows 'Instantly'
- 4Create a test GitHub issue to verify it works
Scaling Beyond 200+ issues/month+ Records
If your volume exceeds 200+ issues/month records, apply these adjustments.
Batch processing for labels
Use an Array Iterator module to process GitHub labels in batches rather than individual API calls. This reduces operations from 1 per label to 1 per issue, saving 60-70% on operation usage for heavily labeled issues.
Webhook retry handling
Add a 2-minute delay module before Jira creation during high-traffic periods. GitHub sometimes sends duplicate webhooks within 30 seconds, and the delay helps your duplicate detection catch them before creating extra tickets.
Operation monitoring
Set up a monthly report scenario that tracks operations used per repository. This helps identify which repos generate the most sync volume and whether you need to upgrade your Make plan or filter certain issue types.
Going live
Production Checklist
Before you turn this on for real, confirm each item.
Troubleshooting
Common errors and how to fix them.
Frequently Asked Questions
Common questions about this workflow.
Analysis
Use Make for this if your team creates 20+ GitHub issues per week and needs them tracked in Jira without manual copying. Make's webhook triggers fire within 30 seconds of issue creation, and the visual builder makes field mapping obvious when you're dealing with custom Jira fields. Skip Make if you only sync a few issues per month β Zapier's simpler interface works better for low-volume scenarios where you won't hit operation limits.
This workflow uses 2 operations per GitHub issue (1 for the trigger, 1 for Jira creation). At 100 issues per month, that's 200 operations total. Make's Core plan at $9/month includes 10,000 operations, so you're well covered. Zapier would cost $20/month for their Starter plan to handle the same volume. N8N self-hosted is free but requires server management β Make saves you $50+/month in hosting costs.
Zapier handles GitHub label formatting better β their built-in formatter automatically converts spaces to hyphens for Jira compatibility. N8N offers more advanced data transformation with JavaScript functions, letting you create complex GitHub-to-Jira username mappings without external tools. Make still wins because its error handling is more granular β you can retry failed syncs without reprocessing successful ones, which matters when you're syncing dozens of issues daily.
GitHub's webhook system occasionally delivers duplicate events during API hiccups, creating duplicate Jira tickets. Add a duplicate detection filter using GitHub issue numbers to catch repeats. Jira's API rate limit kicks in at 300 requests per hour per user β if your team creates issues in bursts, you'll hit 429 errors. The built-in retry mechanism handles this, but expect 5-10 minute delays during peak usage.
Ideas for what to build next
- βAdd comment syncing β Create a second scenario that watches GitHub issue comments and posts them to the corresponding Jira ticket using the GitHub issue number for matching.
- βSet up status mirroring β Build a reverse sync that updates GitHub issue labels when Jira ticket status changes, keeping both systems in sync for project status tracking.
- βCreate summary reporting β Build a weekly scenario that counts issues synced per repository and emails a summary to your team lead for volume monitoring and process improvement.
Related guides
How to Share Notion Meeting Notes to Slack with Pipedream
~15 min setup
How to Share Notion Meeting Notes to Slack with Power Automate
~15 min setup
How to Share Notion Meeting Notes to Slack with n8n
~20 min setup
How to Send Notion Meeting Notes to Slack with Zapier
~8 min setup
How to Share Notion Meeting Notes to Slack with Make
~12 min setup
How to Create Notion Tasks from Slack with Pipedream
~15 min setup