We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1f08bb commit e3db998Copy full SHA for e3db998
lib/code_climate/test_reporter/ci.rb
@@ -45,6 +45,15 @@ def self.service_data
45
branch: ENV['WERCKER_GIT_BRANCH'],
46
commit_sha: ENV['WERCKER_GIT_COMMIT']
47
}
48
+ elsif ENV['CI_NAME'] =~ /DRONE/i
49
+ {
50
+ name: "drone",
51
+ build_identifier: ENV['CI_BUILD_NUMBER'],
52
+ build_url: ENV['CI_BUILD_URL'],
53
+ branch: ENV['CI_BRANCH'],
54
+ commit_sha: ENV['CI_BUILD_NUMBER'],
55
+ pull_request: ENV['CI_PULL_REQUEST']
56
+ }
57
elsif ENV['CI_NAME'] =~ /codeship/i
58
{
59
name: "codeship",
0 commit comments