We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05dbc93 commit fabc6b8Copy full SHA for fabc6b8
src/components/Contributors/index.js
@@ -40,7 +40,7 @@ export default function Contributors() {
40
// Merge contributors, filtering out bots
41
data.forEach(contributor => {
42
// Skip bots (any login ending with [bot])
43
- if (contributor.login.endsWith('[bot]')) {
+ if (contributor.login.endsWith('[bot]') || contributor.login === 'Copilot') {
44
return;
45
}
46
0 commit comments