GitHub Connector Mylyn: Getting Problems From GitHub

I am using this GitHub Mylyn connector: http://marketplace.eclipse.org/content/github-mylyn-connector

However, when someone creates a problem on GitHub itself, it does not update in my tasks in Eclipse. I work as a team, so I want to be able to share all the tasks. Mylyn’s idea was to create tasks, synchronize them with GitHub, and everyone else just synchronizes their task list with the list of problems on GitHub. As I mentioned, somehow it does not synchronize any tasks that were created on GitHub itself, so I assume that the tasks that I create in Mylyn and synchronization with GitHub will also not be synchronized with the computer of my colleagues.

Any solution for this?

+6
source share
1 answer

The idea behind the connection between the GitHub issue and Mylyn is to define a request :

Github issue mylyn query

GitHub release task repositories support the creation of queries that filter the following fields:

  • State (open or closed)
  • Milestones
  • Mention
  • Assignee
  • Labels

So, if you do not define a request for problems (especially for those assigned to you or your team), you will not see them.

This request will use the GitHub v3 API for problems .
( Huboard is an example of a service other than Egit that uses this API: as described in Huboard - Github issues made by stunning , Ryan Rauh )

+6
source

Source: https://habr.com/ru/post/918862/


All Articles