Skip to content

Commit ecd4ea9

Browse files
authored
Merge pull request #91 from Gomboc-AI/DEV-2124
DEV-2124
2 parents 30193c8 + 17e4da3 commit ecd4ea9

File tree

3 files changed

+57
-2
lines changed

3 files changed

+57
-2
lines changed

.github/CODEOWNERS

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,38 @@
1-
* @Gomboc-AI/reviewers
1+
# When all else fails allow anyone to review
2+
* @Gomboc-AI/rnd
3+
4+
# Language reviewers
5+
*.js @Gomboc-AI/rvr-typescript
6+
*.ts @Gomboc-AI/rvr-typescript
7+
*.json @Gomboc-AI/rvr-typescript
8+
.npmrc @Gomboc-AI/rvr-typescript
9+
.nvmrc @Gomboc-AI/rvr-typescript
10+
11+
*.py @Gomboc-AI/rvr-python
12+
pyproject.toml @Gomboc-AI/rvr-python
13+
requirements.txt @Gomboc-AI/rvr-python
14+
15+
*.go @Gomboc-AI/rvr-golang
16+
go.mod @Gomboc-AI/rvr-golang
17+
18+
*.tf @Gomboc-AI/rvr-terraform
19+
*.hcl @Gomboc-AI/rvr-terraform
20+
*.tfvars @Gomboc-AI/rvr-terraform
21+
22+
*.sql @Gomboc-AI/rvr-sql
23+
24+
*.graphql @Gomboc-AI/rvr-graph
25+
26+
#### Repo specific behavior goes here ####
27+
28+
#### END ####
29+
30+
# General Areas of review
31+
CODEOWNERS @Gomboc-AI/rvr-codeowners
32+
/.github/workflows/* @Gomboc-AI/rvr-cicd
33+
skaffold.yaml @Gomboc-AI/rvr-cicd
34+
Dockerfile @Gomboc-AI/rvr-container
35+
compose.yaml @Gomboc-AI/rvr-container
36+
.devcontainer/* @Gomboc-AI/rvr-container
37+
*.op-tmpl @Gomboc-AI/rvr-security
38+
.env @Gomboc-AI/rvr-security
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CODEOWNERS Checker
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
paths:
8+
- .github/CODEOWNERS
9+
10+
jobs:
11+
editorconfig:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: mszostok/[email protected]
16+
with:
17+
checks: "duppatterns,syntax"
18+
experimental_checks: "notowned,avoid-shadowing"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gomboc-ai/cli",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "",
55
"type": "module",
66
"main": "bin/index.js",

0 commit comments

Comments
 (0)