ignore octoglot and Octomerger bots

This commit is contained in:
Rachael Sewell 2020-10-18 10:29:14 -07:00 коммит произвёл GitHub
Родитель 597b879073
Коммит f39e0a7f8e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -5,7 +5,7 @@ on:
jobs:
first-responder-triage:
if: github.repository == 'github/docs-internal' && github.event.pull_request.draft == false && github.event.action != 'unlabeled' && !contains(github.event.issue.labels.*.name, 'autoupdate') && !contains(github.event.issue.labels.*.name, 'automerge')
if: github.repository == 'github/docs-internal' && github.event.pull_request.draft == false && github.event.action != 'unlabeled'
runs-on: ubuntu-latest
steps:
@ -28,6 +28,8 @@ jobs:
`/orgs/github/teams/docs/members`
)
const logins = teamMembers.data.map(member => member.login)
// Include some of our docs bots as team members
logins.push('Octomerger', 'octoglot')
if (logins.some(login => login === updatedIssueInformation.data.user.login)) {
console.log(`This issue or pull request was authored by a member of the github/docs team.`)
return 'true'