Sha256: 59c57944e2a58d270764fc8fda86335220aa0df1982dc8ba9b43297b0ed5fff7
Contents?: true
Size: 1.21 KB
Versions: 9
Compression:
Stored size: 1.21 KB
Contents
module Datadog module CI module Ext module Environment module Providers class Gitlab < Extractor @name_email_tuple: [String?, String?] def provider_name: () -> "gitlab" def job_name: () -> String? def job_url: () -> String? def pipeline_id: () -> String? def pipeline_name: () -> String? def pipeline_number: () -> String? def pipeline_url: () -> String? def stage_name: () -> String? def workspace_path: () -> String? def node_name: () -> String? def node_labels: () -> String? def git_repository_url: () -> String? def git_commit_sha: () -> String? def git_branch: () -> String? def git_tag: () -> String? def git_commit_author_name: () -> String? def git_commit_author_email: () -> String? def git_commit_author_date: () -> String? def git_commit_message: () -> String? def ci_env_vars: () -> String? private def extract_name_email: () -> [String?, String?] end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems