class Dependabot::GitRef

def initialize(name:, commit_sha:, tag_sha: nil, ref_sha: nil, ref_type: nil)

def initialize(name:, commit_sha:, tag_sha: nil, ref_sha: nil, ref_type: nil)
  @name = name
  @commit_sha = commit_sha
  @ref_sha = ref_sha
  @tag_sha = tag_sha
  @ref_type = ref_type
end