From 8c58875ea5f5b3cb71674c7a168b1639cb9e4d79 Mon Sep 17 00:00:00 2001 From: Jiefeng Chen <51037443+BigCat20196@users.noreply.github.com> Date: Fri, 18 Feb 2022 10:55:42 +0800 Subject: [PATCH] [Issue helper] Update owner list (#23079) * initial * rename yml * git push function * only collect issues with label 'Mgmt' * handle exception * date format * update log print * update bot policy * skip self-create issue * add ziwei and zhenbiao * Update python.py Co-authored-by: msyyc <70930885+msyyc@users.noreply.github.com> Co-authored-by: Yuchao Yan --- scripts/issue_helper/python.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/issue_helper/python.py b/scripts/issue_helper/python.py index 54c58b0fe261..a32a9dca25db 100644 --- a/scripts/issue_helper/python.py +++ b/scripts/issue_helper/python.py @@ -1,10 +1,9 @@ from common import Common -_PYTHON_OWNER = {'msyyc', 'BigCat20196'} +_PYTHON_OWNER = {'msyyc', 'BigCat20196', 'Wzb123456789', 'kazrael2119'} _PYTHON_REPO = 'Azure/azure-sdk-for-python' _FILE_OUT_NAME_PYTHON = 'sdk_issue_python.md' - def python_process() -> None: instance = Common(_PYTHON_OWNER, _PYTHON_REPO, _FILE_OUT_NAME_PYTHON) instance.run()