Class: Danger::Semaphore
Overview
### CI Setup
For Semaphore you will want to go to the settings page of the project. Inside “Build Settings” you should add ‘bundle exec danger` to the Setup thread. Note that Semaphore only provides the build environment variables necessary for Danger on PRs across forks.
### Token Setup
You can add your ‘DANGER_GITHUB_API_TOKEN` inside the “Environment Variables” section in the settings.
Instance Attribute Summary
Attributes inherited from CI
#pull_request_id, #repo_slug, #repo_url
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(env) ⇒ Semaphore
constructor
A new instance of Semaphore.
- #supported_request_sources ⇒ Object
Methods inherited from CI
available_ci_sources, inherited, #supports?
Constructor Details
#initialize(env) ⇒ Semaphore
Returns a new instance of Semaphore.
31 32 33 34 35 |
# File 'lib/danger/ci_source/semaphore.rb', line 31 def initialize(env) self.repo_slug = env["SEMAPHORE_GIT_REPO_SLUG"] || env["SEMAPHORE_REPO_SLUG"] self.pull_request_id = env["SEMAPHORE_GIT_PR_NUMBER"] || env["PULL_REQUEST_NUMBER"] self.repo_url = env["SEMAPHORE_GIT_URL"] || GitRepo.new.origins end |
Class Method Details
.validates_as_ci?(env) ⇒ Boolean
16 17 18 |
# File 'lib/danger/ci_source/semaphore.rb', line 16 def self.validates_as_ci?(env) env.key? "SEMAPHORE" end |
.validates_as_pr?(env) ⇒ Boolean
20 21 22 23 24 25 |
# File 'lib/danger/ci_source/semaphore.rb', line 20 def self.validates_as_pr?(env) one = ["SEMAPHORE_REPO_SLUG", "PULL_REQUEST_NUMBER"].all? { |x| env[x] && !env[x].empty? } two = ["SEMAPHORE_GIT_REPO_SLUG", "SEMAPHORE_GIT_PR_NUMBER"].all? { |x| env[x] && !env[x].empty? } one || two end |
Instance Method Details
#supported_request_sources ⇒ Object
27 28 29 |
# File 'lib/danger/ci_source/semaphore.rb', line 27 def supported_request_sources @supported_request_sources ||= [Danger::RequestSources::GitHub] end |