diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2019-11-19 10:28:55 -0600 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-12-09 20:46:17 +0100 |
commit | ebdae1d5b7916abb7e919c560b04841f0dfd21c6 (patch) | |
tree | dff14e70bbf3d19936e45f17ebc58dc48145586b /sonar-scanner-protocol | |
parent | a98070323ef55ce3934a564e0cf49a5e8fe03971 (diff) | |
download | sonarqube-ebdae1d5b7916abb7e919c560b04841f0dfd21c6.tar.gz sonarqube-ebdae1d5b7916abb7e919c560b04841f0dfd21c6.zip |
SONAR-12673 Fix issue management
Diffstat (limited to 'sonar-scanner-protocol')
-rw-r--r-- | sonar-scanner-protocol/src/main/protobuf/scanner_report.proto | 4 |
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; } } |