Skip to content

Commit

Permalink
modify codeowners (DeepLink-org#442)
Browse files Browse the repository at this point in the history
* modify codeowners

* modify filter_ci.py
  • Loading branch information
yangbofun authored Oct 8, 2023
1 parent d9a801b commit 7951045
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is ONLY used to merge PRs. Approvals from people in this file are required for merging.


* @yangbofun @wzh1994 @wopeizl @zhangxc11
/diopi_test/python/conformance/ @LeungChiNan @jingguo-st @NeoZhang
/impl/ascend/ @hellozmz @Zhang-ze-feng
* @yangbofun # @wzh1994 @wopeizl @zhangxc11
/diopi_test/python/conformance/ @LeungChiNan @jingguo-st @NeosZhang
/impl/ascend/ @hellozmz @zhangzefeng92

3 changes: 2 additions & 1 deletion scripts/filter_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ def get_run_result(pr_number):
for file in pr_files:
filenames = file["filename"]
filename = filenames.split("/")[-1]
if filename.endswith('.md') or '.github/ISSUE_TEMPLATE/' in filenames or filenames.startswith('.img') or filename.startswith('.git') or filename.startswith('CODE_OF_CONDUCT') :
if filename.endswith('.md') or '.github/ISSUE_TEMPLATE/' in filenames or filenames.startswith('.img') or filename.startswith('.git') \
or filename == 'CODEOWNERS' or filename == 'LICENSE' or filename == '.pre-commit-config.yaml':
continue
elif filenames.startswith('impl'):
if "impl/camb" in filenames:
Expand Down

0 comments on commit 7951045

Please sign in to comment.