Sha256: 308287e40bde25223b28868d9c397b552bc7bfbac2ae52a7b067e617d6cddf8d
Contents?: true
Size: 495 Bytes
Versions: 26
Compression:
Stored size: 495 Bytes
Contents
class Terraspace::Cloud::Vcs::LocalGit class Github < Base def commit_url "#{host}/#{full_repo}/commits/#{sha}" if sha end def branch_url "#{host}/#{full_repo}/tree/#{branch_name}" if branch_name end # Also computed in ci plugins which detects it from the ci env. # Also handling here for case when user provides PR_NUMBER and GIT_REPO outside of normal CI env. def pr_url "#{host}/#{full_repo}/pull/#{pr_number}" if pr_number end end end
Version data entries
26 entries across 26 versions & 1 rubygems