maksim7730 downloadsIntegration for accessing and managing Jira issues directly in your notes
A plugin for Obsidian that enables you to create Markdown notes from Jira issues and keep them up to date automatically. Easily generate notes from your Jira tickets and ensure your vault always reflects the latest issue status.
Manual Installation
Via Community Plugins
Configure Settings
Settings → Jira Plugin.jira).Creating an Issue Note
PROJ-123) in the editor.Jira: Create issue.Updating Issues
Jira: Update issue updates the current issue note.Jira: Update all issues updates all tracked issues.Managing Issues
The template is filled with data received from Jira.
You can explore the available data fields by performing a curl request to your Jira API, for example:
curl -u your-username:password https://jira.example.com/rest/api/2/issue/PROJ-123
The template uses Nunjucks syntax.
---
jira_assignee: "[[{{ fields.assignee.displayName }}]]"
jira_reporter: "[[{{ fields.reporter.displayName }}]]"
jira_type: {{ fields.issuetype.name }}
jira_project: {{fields.project.key}}
jira_status: {{fields.status.name}}
jira_summary: {{ fields.summary }}
jira_priority: {{fields.priority.name}}
jira_link: https://jira.example.com.com/browse/{{key}}
jira_components: [{% for comp in fields.components %}"{{ comp.name }}"{% if not loop.last %}, {% endif %}{% endfor %}]
---
# [[{{ key }}]]
{{ fields.description }}
MIT. See LICENSE for details.
For questions, suggestions, or bug reports, please open an issue on the GitHub repository.