An open API service indexing awesome lists of open source software.

https://github.com/filipoliko/qape-reporter-gitlab

QApe will report all issues to your gitlab repository!
https://github.com/filipoliko/qape-reporter-gitlab

Last synced: 30 days ago
JSON representation

QApe will report all issues to your gitlab repository!

Awesome Lists containing this project

README

          

# QApe Reporter Gitlab
This is reporter for [QApe](https://www.npmjs.com/package/qape). It can report all the errors he finds to gitlab issue tracker.

## Installation
Add reporter as a dependency
```
npm install qape-reporter-gitlab
```
Update QApe config
```javascript
export default {
...
reporters: ['gitlab'],
reporterOptions: {
gitlab: {
url: 'https://gitlab.com'
projectId: 1,
privateToken: 'private_token', // Gitlab private token to access gitlab API
assignees: ['username', 1] // (Optional) Gitlab username or user id
}
}
}
```