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 +4 -4
- data/README.md +2 -0
- data/lib/code_ownership/configuration.rb +3 -1
- data/lib/code_ownership/private/codeowners_file.rb +4 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86cc006408577cb291e5cae787205ef670ebd45afd3ad1bab635e93424c44301
|
4
|
+
data.tar.gz: ecea75fa9aa68c9727210a70a1583d0fcb28d17df53e8b35f93942647be6e148
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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(
|
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.
|
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-
|
10
|
+
date: 2025-02-03 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: code_teams
|