-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathCODEOWNERS
More file actions
50 lines (37 loc) · 2.66 KB
/
CODEOWNERS
File metadata and controls
50 lines (37 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
###################################
##### Global Protection Rule ######
###################################
# NOTE: This rule is overriden by the more specific rules below. This is the catch-all rule for all files not covered by the more specific rules below.
* @hiero-ledger/hiero-cli-maintainers
############################
##### Project Files ######
############################
/src/** @hiero-ledger/hiero-cli-maintainers
/__tests__/** @hiero-ledger/hiero-cli-maintainers
#########################
##### Core Files ######
#########################
# NOTE: Must be placed last to ensure enforcement over all other rules
# Protection Rules for Github Configuration Files and Actions Workflows
/.github/ @hiero-ledger/github-maintainers
/.github/workflows/ @hiero-ledger/github-maintainers
/.github/dependabot.yml @hiero-ledger/github-maintainers @hiero-ledger/hiero-cli-maintainers
# NodeJS project files
package.json @hiero-ledger/github-maintainers @hiero-ledger/hiero-cli-maintainers
package-lock.json @hiero-ledger/github-maintainers @hiero-ledger/hiero-cli-maintainers
jest.config.mjs @hiero-ledger/github-maintainers @hiero-ledger/hiero-cli-maintainers
# Codacy Tool Configurations
/config/ @hiero-ledger/github-maintainers @hiero-ledger/hiero-cli-maintainers
.remarkrc @hiero-ledger/github-maintainers @hiero-ledger/hiero-cli-maintainers
# Semantic Release Configuration
.releaserc @hiero-ledger/github-maintainers @hiero-ledger/hiero-cli-maintainers
# Self-protection for root CODEOWNERS files (this file should not exist and should definitely require approval)
/CODEOWNERS @hiero-ledger/github-maintainers
# Protect the repository root files
/README.md @hiero-ledger/github-maintainers @hiero-ledger/hiero-cli-maintainers
**/LICENSE @hiero-ledger/github-maintainers
# CodeCov configuration
**/codecov.yml @hiero-ledger/github-maintainers @hiero-ledger/hiero-cli-maintainers
# Git Ignore definitions
**/.gitignore @hiero-ledger/github-maintainers @hiero-ledger/hiero-cli-maintainers
**/.gitignore.* @hiero-ledger/github-maintainers @hiero-ledger/hiero-cli-maintainers