Sha256: 99ff5aefc27454b8373a7d7148d94cf2c4fcc3a8ccb2918a9a6a6305900d1760
Contents?: true
Size: 527 Bytes
Versions: 24
Compression:
Stored size: 527 Bytes
Contents
# typed: true module CodeOwnership module Private module TeamPlugins class Github < CodeTeams::Plugin extend T::Sig extend T::Helpers GithubStruct = Struct.new(:team, :do_not_add_to_codeowners_file) sig { returns(GithubStruct) } def github raw_github = @team.raw_hash['github'] || {} GithubStruct.new( raw_github['team'], raw_github['do_not_add_to_codeowners_file'] || false ) end end end end end
Version data entries
24 entries across 24 versions & 1 rubygems