- 
                Notifications
    You must be signed in to change notification settings 
- Fork 3
Open
Labels
Description
I plan to add Gitlab Support.
Todo's
- Move Github code to separated package
- Add abstractions
- Gitlab REST API
- Gitlab GraphQL API
Example Queries
REST
GET https://gitlab.com/api/v4/projects/13083/repository/tags?order_by=version&sort=desc
GraphQL
{
  project(fullPath: "gitlab-org/gitlab-foss") {
    releases(first: 1) {
      nodes {
        tagName
        upcomingRelease
        links {
          selfUrl
        }
      }
    }
  }
}