@sir_pepe github metrics jumped by 4000% after we added triage bot!
@sir_pepe “AI is now responsible for over 99% of responses to our GitHub issues!”

@sir_pepe

> 4613 remaining items
> "surely, it can't be.."
> "..."

And _this_ is supposed to be The Next Big Thing. Ffs

@sir_pepe /me add status/need-triage label
@sir_pepe it's still going...

@sir_pepe There are more cases …

https://github.com/google-gemini/gemini-cli/issues/16725
https://github.com/google-gemini/gemini-cli/issues/16734
https://github.com/google-gemini/gemini-cli/issues/16739
https://github.com/google-gemini/gemini-cli/issues/16743

I love the high quality of the fix:

- if (username === 'github-actions[bot]') {
+if (username === 'github-actions[bot]' || username === 'gemini-cli[bot]' || username.endsWith('[bot]')) {

I, as an old school coder, would have used:

+ if (username.endsWith('[bot]')) {

I wonder if testing the username for “[bot]” is correct … might break one day for “[AI,bot]”.