Merge pull request #9358 from Rylan12/triage-fix

workflows/triage: skip for BrewTestBot PRs
This commit is contained in:
Markus Reiter 2020-12-01 09:44:26 +01:00 committed by GitHub
commit eb486bf6a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,7 +133,7 @@ jobs:
})
const { data: user } = await github.users.getAuthenticated()
if (pullRequest.user.login == user) {
if (pullRequest.user.login == user.login) {
core.warning('Pull request author is a bot.')
return
}