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!
- Host: GitHub
- URL: https://github.com/filipoliko/qape-reporter-gitlab
- Owner: Filipoliko
- Created: 2018-11-17T00:01:23.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-28T10:21:33.000Z (about 7 years ago)
- Last Synced: 2025-03-12T19:46:34.166Z (over 1 year ago)
- Language: JavaScript
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
}
}
}
```