AI is going great: https://github.com/google-gemini/gemini-cli/issues/16728
> 4613 remaining items
> "surely, it can't be.."
> "..."
And _this_ is supposed to be The Next Big Thing. Ffs
@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]”.