Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.rb « data « support « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0fe1baeff8a9d2f596e9d44376eebb8ba9c9b6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module QA
  module Support
    module Data
      module Github
        def github_username
          'gitlab-qa-github'
        end
      end
    end
  end
end

QA::Support::Data::Github.prepend_mod_with('Support::Data::Github', namespace: QA)