aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-scanner-protocol
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-scanner-protocol')
-rw-r--r--sonar-scanner-protocol/src/main/protobuf/scanner_report.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto
index 61ab3465982..7aad1a281af 100644
--- a/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto
+++ b/sonar-scanner-protocol/src/main/protobuf/scanner_report.proto
@@ -43,7 +43,7 @@ message Metadata {
string branch_name = 9;
BranchType branch_type = 10;
- string merge_branch_name = 11;
+ string reference_branch_name = 11;
string relative_path_from_scm_root = 12;
string scm_revision_id = 13;
@@ -71,7 +71,7 @@ message Metadata {
enum BranchType {
UNSET = 0;
BRANCH = 1;
- PULL_REQUEST = 3;
+ PULL_REQUEST = 2;
}
}