A powerful utility for batch-importing tasks from Excel into Jira. Transform your Excel planning data into properly structured Jira issues with hierarchical relationships, automatic validation, and direct cloud integration (Jira Cloud only for API integration, CSV export works with any Jira deployment).
This tool currently supports Jira Cloud only for direct API integration.
CSV Export: The CSV export functionality works with any Jira deployment type (Cloud, Server, Data Center) since it generates CSV files for manual import.
Direct Cloud Import: The --cloud flag only works with Jira Cloud instances using REST API v3. It does not work with:
- Jira Server (on-premises)
- Jira Data Center
- Legacy Jira instances
Need Server/Data Center support? We're happy to help adapt the tool for your specific Jira setup constraints. Please reach out via GitHub Issues or via our website deerhide.run with details about your Jira configuration.
Many teams continue to do their planning in Excel, even when their task execution lives in Jira. This tool provides a direct way to transfer those plans into Jira without manual data entry, supporting:
- Hierarchical issue structures (Initiatives → Epics → Stories → Sub-tasks)
- Automatic validation and error fixing
- Direct Jira Cloud integration with batch processing
- Excel-based configuration for easy setup
- Rich console interface with detailed reporting
-
Download the
jira-importer.exefile from the releases page -
Prepare your Excel file using the provided
ImportTemplate.xlsx -
Test your setup (recommended):
jira-importer.exe --show-config jira-importer.exe your-data.xlsx --dry-run
-
Run the import:
# For CSV export (manual import) jira-importer.exe your-data.xlsx # For direct Jira Cloud import jira-importer.exe your-data.xlsx --cloud
Drag and drop your Excel file on the jira-importer.exe file for quick CSV export.
| Option | Description |
|---|---|
your-data.xlsx |
Your Excel file to import |
-c, --config |
Use a specific configuration file |
-ce, --config-excel |
Use settings from your Excel file's Config sheet |
-cd, --config-default |
Use the default configuration |
-ci, --config-input |
Use config file next to your Excel file (recommended) |
--cloud |
Import directly to Jira Cloud (requires configuration) |
--auto-fix |
Enable automatic fixing of validation issues |
--credentials [ACTION] |
Manage Jira API credentials (run/show/clear) |
--data-sheet NAME |
Specify custom data sheet name |
--dry-run |
Process data without writing output |
--show-config |
Show configuration without requiring input file |
-d, --debug |
Show detailed information for troubleshooting |
-v, --version |
Show version information |
Note: --cloud requires --config-input or --config myconfig.json
Use the provided ImportTemplate.xlsx as a starting point for your data. The tool supports:
- Direct Jira Cloud Import: Import directly to Jira Cloud (with
--cloudflag) - CSV Export: Convert your Excel file to CSV format for manual import
- Smart Validation: Validate and format data for Jira import
- Auto-fixing: Automatically fix common issues (with
--auto-fixflag) - Hierarchical Support: Handle Initiatives, Epics, Stories, and Sub-tasks with proper relationships
- Custom types and their levels can be configured in the configuration files (JSON recommended)
The tool supports skipping rows during processing using multiple criteria:
- RowType column: Set
RowType = "SKIP"for rows you want to exclude - Issue Type filtering: Automatically skip rows with Issue Types like "comment", "note", "skip"
- Skipped rows bypass validation and won't appear in the final output
- Configure this feature in your config file with
"skip_rowtype": trueand"skip_issuetypes": ["comment", "note", "skip"]
Example:
Summary,Priority,Issue Type,RowType
Fix login bug,High,Bug,PROCESS
Skip this row,Low,Story,SKIP
Comment row,Low,comment,PROCESS
Update docs,Medium,Task,PROCESS
Configuration:
{
"app": {
"validation": {
"skip_rowtype": true,
"skip_issuetypes": ["comment", "note", "skip"]
}
}
}The tool can generate output in multiple formats:
- Direct Jira Import: Issues are created directly in Jira Cloud (with
--cloudflag) - CSV Export: A formatted CSV file ready for manual Jira import
- Excel Reports: Processing reports with metadata written back to Excel files
Choose the configuration method that works best for your workflow:
- Put your settings in the
Configsheet of your Excel file - Use our template as a starting point:
resources/templates/ImportTemplate_with_config.xlsx - Run:
jira-importer.exe your-data.xlsx -ce
Benefits:
- Everything in one file
- Helpful lookup tables (assignees, sprints, components) in the same Excel
- Excel Table Configuration: Use structured tables like
CfgAssignees,CfgSprints,CfgComponents
- Copy
resources/templates/config_importer.jsonnext to your Excel file - Fill in your Jira details (site address, API token, project key/id)
- Run:
jira-importer.exe your-data.xlsx -ci
Configuration Sources:
- Excel file (
-ce): Put your settings in the Excel file's Config sheet - JSON file (
-ci): Placeconfig_importer.jsonnext to your Excel file - Default (
-cd): Use the built-in configuration - Custom (
-c): Point to a specific configuration file
Recommendation: Use the Excel Config sheet (-ce) for simplicity, or place a JSON config file next to your Excel file and use -ci.
- File logging can be enabled/disabled with
write_to_file(on by default) - Logs are saved next to the app in
jira_importer_logs/ - For extra details, run with
-d(debug mode)
The toolkit includes comprehensive security improvements:
- Path validation - Automatic validation of file paths to prevent security issues
- Sensitive data protection - Automatic redaction of passwords, tokens, and secrets from logs
- Improved error handling - Better error messages with specific guidance for troubleshooting
- Safer file operations - Enhanced file handling with proper error management
The importer provides clear, actionable error messages:
- Clear authentication errors - Know immediately if your token expired or if there's a connection problem
- Helpful guidance - Get specific instructions like "Refresh your token at [URL]" instead of cryptic error codes
- Configuration help - Better messages when config files are missing or incorrect
- Dry-run mode - Test your configuration and data processing without writing output files
- Configuration display - Show your current configuration without requiring an input file
- Enhanced Excel configuration - Improved type conversion and fallback logic for better reliability
- Import directly to Jira Cloud - No more manual CSV uploads
- Hierarchical issue types - Support for Initiatives, Epics, Stories, and Sub-tasks with proper parent-child relationships
- Batch processing - Efficient handling of large imports
- Credential management - Secure credential storage with keyring integration
- Excel table configuration - Advanced configuration using structured Excel tables
-
Set up credentials:
jira-importer.exe --credentials run
-
Import directly to Jira:
jira-importer.exe your-data.xlsx --cloud
-
With auto-fix enabled:
jira-importer.exe your-data.xlsx --cloud --auto-fix
- Interactive setup:
--credentials run- Set up authentication interactively - View credentials:
--credentials show- Display current credentials - Clear credentials:
--credentials clear- Remove stored credentials - Environment variables: Use
JIRA_EMAILandJIRA_API_TOKENfor automation
The tool supports proper parent-child relationships:
- Level 1 (Initiative): Can parent all other levels
- Level 2 (Epic): Can parent levels 3 and 4
- Level 3 (Story/Task/Bug): Can parent level 4
- Level 4 (Sub-Task): Must have a parent
Before importing your data, test your configuration:
# Test your configuration without processing data
jira-importer.exe -c your-config.json --show-config
jira-importer.exe your-data.xlsx -ce --show-config
# Test data processing without writing output files
jira-importer.exe your-data.xlsx --dry-run
# Test with debug information
jira-importer.exe your-data.xlsx --debug- Mac and Linux support - Native builds for other operating systems
- Multiple file imports - Process several Excel files at once
- Project templates - Ready-made templates for common project types
- Jira Server/Data Center support - Support for on-premises Jira instances
- Advanced reporting - More detailed import reports and analytics
- File not found: Make sure your Excel file exists and the path is correct
- Permission errors: Run as administrator if needed
- Authentication problems: The importer will tell you exactly what's wrong (see CONFIG.md for details)
- Configuration issues: Check that you're using the right config flags (
-c,-ce,-ci,-cd) - Credential issues: Use
--credentials showto check your stored credentials - Cloud import failures: Check your Jira permissions and project access
- Path validation errors: Ensure file paths don't contain control characters or exceed length limits
- Sensitive data in logs: Sensitive information is automatically redacted for security
- Need more details: Use
-dflag for detailed logging - Test your setup: Use
--show-configand--dry-runto test before importing
- Documentation: Check the docs folder for detailed guides
- Issues: Report bugs or request features on GitHub Issues
- Discussions: Ask questions on GitHub Discussions
- Debug logs: Use
--debugflag for detailed error information
- GitHub Repository: https://github.com/DeerHide/jira-toolkit
- License: MIT License - feel free to contribute or fork!