Skip to content

Commit 2ce999e

Browse files
committed
Update review and branch name
Signed-off-by: Rashid Kaleem <230885705+arekay-nv@users.noreply.github.com>
1 parent 32b1af8 commit 2ce999e

2 files changed

Lines changed: 9 additions & 13 deletions

File tree

.github/workflows/auto-review.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ jobs:
1515
const { owner, repo, number } = context.issue;
1616
1717
// Default reviewers for all components
18-
const defaultReviewers = ['nvzhihanj'];
18+
const defaultReviewers = ['nvzhihanj','arekay-nv'];
1919
2020
// Component-specific reviewers (you can expand this later)
2121
const componentReviewers = {
22-
'src/inference_endpoint/load_generator/': ['nvzhihanj'],
23-
'src/inference_endpoint/dataset_manager/': ['nvzhihanj'],
24-
'src/inference_endpoint/endpoint_client/': ['nvzhihanj'],
25-
'src/inference_endpoint/metrics/': ['nvzhihanj'],
26-
'src/inference_endpoint/config/': ['nvzhihanj'],
27-
'src/inference_endpoint/plugins/': ['nvzhihanj'],
22+
'src/inference_endpoint/load_generator/': ['nvzhihanj','arekay-nv'],
23+
'src/inference_endpoint/dataset_manager/': ['nvzhihanj','arekay-nv'],
24+
'src/inference_endpoint/endpoint_client/': ['nvzhihanj','arekay-nv'],
25+
'src/inference_endpoint/metrics/': ['nvzhihanj','arekay-nv'],
26+
'src/inference_endpoint/config/': ['nvzhihanj','arekay-nv'],
27+
'src/inference_endpoint/plugins/': ['nvzhihanj','arekay-nv'],
2828
};
2929
3030
// Get changed files

.github/workflows/branch-validator.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,9 @@ jobs:
1818
// Branch naming patterns
1919
const validPatterns = [
2020
/^feature\/.+/, // feature/component-name
21-
/^bugfix\/.+/, // bugfix/issue-description
22-
/^hotfix\/.+/, // hotfix/critical-fix
21+
/^fix\/.+/, // fix/fix-description
2322
/^docs\/.+/, // docs/documentation-update
2423
/^test\/.+/, // test/testing-improvements
25-
/^refactor\/.+/, // refactor/code-improvement
2624
/^chore\/.+/, // chore/maintenance-tasks
2725
/^release\/.+/, // release/version-number
2826
];
@@ -33,11 +31,9 @@ jobs:
3331
if (!isValidBranch) {
3432
const validExamples = [
3533
'feature/load-generator',
36-
'bugfix/connection-timeout',
37-
'hotfix/critical-memory-leak',
34+
'fix/memory-leak',
3835
'docs/api-documentation',
3936
'test/performance-benchmarks',
40-
'refactor/query-lifecycle',
4137
'chore/dependency-update',
4238
'release/v1.0.0'
4339
];

0 commit comments

Comments
 (0)