Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/altayer-digital/better-gitlab
Better gitlab & JIRA integration
https://github.com/altayer-digital/better-gitlab
gitlab jira
Last synced: 23 days ago
JSON representation
Better gitlab & JIRA integration
- Host: GitHub
- URL: https://github.com/altayer-digital/better-gitlab
- Owner: altayer-digital
- Created: 2019-04-13T20:56:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T00:55:30.000Z (almost 2 years ago)
- Last Synced: 2024-04-09T12:03:40.331Z (9 months ago)
- Topics: gitlab, jira
- Language: JavaScript
- Homepage:
- Size: 2.96 MB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Better Gitlab
===
This project aims at improving Gitlab & JIRA integration, by enriching gitlab views with information from JIRA.Tested on node version 11.12.0
## MR List view
It adds the following to the gitlab merge request list view:
- JIRA ticket info such as issueType, priority, status & reporter.
- displays the avatars of authors who upvoted the mr.
- highlights thumbsup icon in yellow if the mr is upVoted by config.gitlabUsername.
- displays the avatars of authors who commented on the mr.
- highlights comments icon in red if the mr has unresolved discussions opened by config.gitlabUsername.
- \# of files changed.
- \# of lines added.
- \# of lines removed.
- amount of time spent on ticket by entire team (as seen in tempo worklogs on JIRA).
- ability to filter / sort by all the information mentioned above using JavaScript.## Setup
create `config/user.yml` with the following information:
```
JIRAAPIBaseURL: ''
JIRAWebBaseURL: ''
JIRAUser: ''
JIRAAPIToken: ''gitlabProjectId: 0
gitlabUsername: ''
gitlabAccessToken: ''
```Next run the following from terminal under project directory:
```sh
yarn install
yarn
start
visit http://localhost:3000
```