Skip to main content

labels

This feature is only available on the agency and enterprise plans.

Configuration

name: labels
type: array
default: []
{
"name": "company/project",
"extra": {
"violinist": {
"labels": []
}
}
}

An array of labels that should be added to the merge request.

Note! This option is not supported for Bitbucket, as Bitbucket does not support labels for their pull requests.

Explanation

If you need to label the merge requests coming from violinist, for example for sorting them or even run logic in your CI pipeline, this option is probably what you want.

Example

Say you wanted to label all pull requests coming from violinist with the label dependencies. And say your composer.json looks something like this:

{
"name": "company/project",
"description": "My awesome project"
}

To make Violinist add the label dependencies to all pull requests created, simply add the following to your composer.json:

{
"name": "company/project",
"description": "My awesome project",
"extra": {
"violinist": {
"labels": [
"dependencies"
]
}
}
}