code_ownership 1.38.2 → 1.38.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b40aef85c83e70ad2c2a8ba45030b3e894b184ec71e897443d47b859343a8636
4
- data.tar.gz: 27741ae85077282dca91f42f274325d66ee25b8ed01eaab733aab581f23e6e4e
3
+ metadata.gz: 86cc006408577cb291e5cae787205ef670ebd45afd3ad1bab635e93424c44301
4
+ data.tar.gz: ecea75fa9aa68c9727210a70a1583d0fcb28d17df53e8b35f93942647be6e148
5
5
  SHA512:
6
- metadata.gz: 8d8c2765433571d6407ec67608554fb04dc9b14d84948ddf9b227874aca628e3fd4e927c6154a3d41ede65bdd8628f522e77c089fab9727ec6860339a03673e3
7
- data.tar.gz: 0c8eeb737cbbcce93210c43f0f6c21d846761fa94daa97243796747db3343bf6fd40c033cd3337a628716dd91714354ed5d2af1a2eda1ea29ea716f9ef0687e7
6
+ metadata.gz: f60e4882e6a0ee4647fec6bd9e193dc8a37d7de5b93f382bc6ef1ac4b870fdb73da9bc356f8618fe49655ac157ddb9167997d0c5c62eaf97dcc3080327ec7319
7
+ data.tar.gz: c37a8274092d7c482610debcee97e4ed1883373297d0a5cff556fc4167494a6e474203ea81977bd4fa39ea652aebd25f0213791a58a7024f616c2d0a44cf6d36
data/README.md CHANGED
@@ -164,6 +164,8 @@ bin/codeownership for_team 'My Team' > tmp/ownership_report.md
164
164
 
165
165
  A `CODEOWNERS` file defines who owns specific files or paths in a repository. When you run `bin/codeownership validate`, a `.github/CODEOWNERS` file will automatically be generated and updated.
166
166
 
167
+ If `codeowners_path` is set in `code_ownership.yml` codeowners will use that path to generate the `CODEOWNERS` file. For example, `codeowners_path: docs` will generate `docs/CODEOWNERS`.
168
+
167
169
  ## Proper Configuration & Validation
168
170
 
169
171
  CodeOwnership comes with a validation function to ensure the following things are true:
@@ -12,6 +12,7 @@ module CodeOwnership
12
12
  const :skip_codeowners_validation, T::Boolean
13
13
  const :raw_hash, T::Hash[T.untyped, T.untyped]
14
14
  const :require_github_teams, T::Boolean
15
+ const :codeowners_path, String
15
16
 
16
17
  sig { returns(Configuration) }
17
18
  def self.fetch
@@ -29,7 +30,8 @@ module CodeOwnership
29
30
  js_package_paths: js_package_paths(config_hash),
30
31
  skip_codeowners_validation: config_hash.fetch('skip_codeowners_validation', false),
31
32
  raw_hash: config_hash,
32
- require_github_teams: config_hash.fetch('require_github_teams', false)
33
+ require_github_teams: config_hash.fetch('require_github_teams', false),
34
+ codeowners_path: config_hash.fetch('codeowners_path', '.github'),
33
35
  )
34
36
  end
35
37
 
@@ -111,7 +111,10 @@ module CodeOwnership
111
111
 
112
112
  sig { returns(Pathname) }
113
113
  def self.path
114
- Pathname.pwd.join('.github/CODEOWNERS')
114
+ Pathname.pwd.join(
115
+ CodeOwnership.configuration.codeowners_path,
116
+ 'CODEOWNERS'
117
+ )
115
118
  end
116
119
 
117
120
  sig { params(files: T::Array[String]).void }
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: code_ownership
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.2
4
+ version: 1.38.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gusto Engineers
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-16 00:00:00.000000000 Z
10
+ date: 2025-02-03 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: code_teams