(login: string)
| 141 | ]) |
| 142 | |
| 143 | export function isBot(login: string): boolean { |
| 144 | return login.endsWith('[bot]') || botAccounts.has(login.toLowerCase()) |
| 145 | } |
| 146 | |
| 147 | // Every human who participated in the release's PRs or their closing issues |
| 148 | // (the PR author is included as a participant), sorted case-insensitively, |
no outgoing calls
no test coverage detected