Ghostwriter
Ghostwriter copied to clipboard
Jira Api Support
Hello! im hoping to add jira api support on par with slack etc.
Is your feature request related to a problem? Please describe.
Jira API support to create a jira project when a ghost writer project is created. When findings are linked to a report. create issue in corresponding jira project. If finding is unlinked delete corresponding jira issue in project.
Describe the solution you'd like Support for the jira api. I have a fork that is basically a MVP (https://github.com/latortuga71/Ghostwriter) -> jira_feature branch
Please let me know what you guys think.
This issue has been labeled as stale
because it has been open for 30 days with no activity.
This issue is closed because it has been inactive for 14 days since being labeled stale
. Feel free to re-open the issue with a comment. If this needs further discussion (e.g., a feature request), it might be better to open a topic under the Discussions tab.
I'm not sure if adding support for Jira specifically is a good idea - there are potentially many other different systems that one would want to automatically create when a project is created.
You might be able to do this today by having a service polling the GraphQL API and checking for new projects, though that requires a service constantly running to poll. A cleaner solution may be a notification or hooking system for project creation in Ghostwriter, that could then run a script or push to an endpoint when certain things happen.
I agree. Another option would be using the subscriptions feature of GraphQL to receive live updates on project creation:
https://hasura.io/docs/2.0/subscriptions/postgres/streaming/index/