Class: Danger::Bitrise

Inherits:
CI
  • Object
show all
Defined in:
lib/danger/ci_source/bitrise.rb

Overview

### CI Setup

Add a script step to your workflow:

“‘yml

“‘

### Token Setup

Add the ‘DANGER_GITHUB_API_TOKEN` to your workflow’s [Secret App Env Vars](blog.bitrise.io/anyone-even-prs-can-have-secrets).

Instance Attribute Summary

Attributes inherited from CI

#pull_request_id, #repo_slug, #repo_url

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CI

available_ci_sources, inherited, #supports?

Constructor Details

#initialize(env) ⇒ Bitrise

Returns a new instance of Bitrise.



40
41
42
43
44
45
46
# File 'lib/danger/ci_source/bitrise.rb', line 40

def initialize(env)
  self.pull_request_id = env["BITRISE_PULL_REQUEST"]
  self.repo_url = env["GIT_REPOSITORY_URL"]

  repo_matches = self.repo_url.match(%r{([\/:])(([^\/]+\/){1,2}[^\/]+?)(\.git$|$)})
  self.repo_slug = repo_matches[2] unless repo_matches.nil?
end

Class Method Details

.validates_as_ci?(env) ⇒ Boolean

Returns:

  • (Boolean)


23
24
25
# File 'lib/danger/ci_source/bitrise.rb', line 23

def self.validates_as_ci?(env)
  env.key? "BITRISE_IO"
end

.validates_as_pr?(env) ⇒ Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/danger/ci_source/bitrise.rb', line 27

def self.validates_as_pr?(env)
  return !env["BITRISE_PULL_REQUEST"].to_s.empty?
end

Instance Method Details

#supported_request_sourcesObject



31
32
33
34
35
36
37
38
# File 'lib/danger/ci_source/bitrise.rb', line 31

def supported_request_sources
  @supported_request_sources ||= [
    Danger::RequestSources::GitHub,
    Danger::RequestSources::GitLab,
    Danger::RequestSources::BitbucketServer,
    Danger::RequestSources::BitbucketCloud
  ]
end