This commit is contained in:
daveta 2021-03-12 21:12:21 -08:00 коммит произвёл GitHub
Родитель a3d01f9187
Коммит 406a2c2589
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@ -32,7 +32,8 @@ MILESTONE_LABELS = [
'R10',
'R11',
'Backlog',
'backlog'
'backlog',
'feature-request',
]
# pylint: disable=missing-docstring, line-too-long

Просмотреть файл

@ -61,7 +61,7 @@ REPOS = [
'botbuilder-tools',
'botframework-directlinejs',
'botframework-cli',
'azure/azure-cli',
# 'azure/azure-cli',
]
# Do not apply user filters to these repos.
@ -85,6 +85,7 @@ MICROSFT_EMPLOYEES = [
'shikhamishra11',
'washingtonkayaker',
'yochay', # Not a MSFT employee anymore, but still owner of lots of issues. Adding here until they are cleaned up.
'vishwacsena', # Not a MSFT employee anymore, but still owner of lots of issues. Adding here until they are cleaned up.
'ryanlengel',
'zerryth',
'stevkan',
@ -94,7 +95,10 @@ MICROSFT_EMPLOYEES = [
'v-madhal',
'v-kydela',
'corinagum',
'mrichardson'
'mrichardson',
'mdrichardson',
'github-actions[bot]',
'zxyanliu',
]
# When to begin searching for issues.
@ -132,6 +136,7 @@ def main():
# Filter out adaptive issues
open_issues = [issue for issue in open_issues if not filter_adaptive_label(issue) and not filter_exempt_from_dri_label(issue)]
user_filtered = True
if repo.name in BYPASS_USERFILTER_REPOS:
user_filtered_issues = [issue for issue in open_issues if not issue.pull_request]