Skip to content

Commit b1ee776

Browse files
committed
fix(reports): filter copilot-swe-agent from contributors
Filter out copilot-swe-agent bot from contributor lists in monthly reports. This ensures only human contributors are counted and displayed.
1 parent 5c9fb6a commit b1ee776

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

reports/2025-12-31-report.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import GitHubProfileCard from '@site/src/components/GitHubProfileCard';
1010
# Summary
1111

1212
- **Month:** December 2025
13-
- **Total items:** 190
13+
- **Total items:** 187
1414
- **Planned work:** 8
15-
- **Opportunistic work:** 182
16-
- **Contributors:** 22
15+
- **Opportunistic work:** 179
16+
- **Contributors:** 21
1717
- **New contributors:** 0
1818

1919

@@ -80,7 +80,6 @@ import GitHubProfileCard from '@site/src/components/GitHubProfileCard';
8080
- [#64 Brewfile fixup](https://github.com/projectbluefin/common/pull/64) by @​hanthor
8181
- [#38 fix: Change copilot-cli from brew to cask installation](https://github.com/projectbluefin/common/pull/38) by @​inffy
8282
- [#37 feat: add Claude Code, Mistral Vibe & Kimi CLI](https://github.com/projectbluefin/common/pull/37) by @​KiKaraage
83-
- [#36 docs: document Brewfiles and remove non-existent flatpak-extras references](https://github.com/projectbluefin/common/pull/36) by @​copilot-swe-agent
8483
- [#29 Add font-comic-shanns-mono-nerd-font to Brewfile](https://github.com/projectbluefin/common/pull/29) by @​theMimolet
8584
- [#25 feat: update ai-tools.Brewfile](https://github.com/projectbluefin/common/pull/25) by @​castrojo
8685
- [#24 feat: add LM Studio to AI tools Brewfile](https://github.com/projectbluefin/common/pull/24) by @​castrojo
@@ -239,8 +238,6 @@ import GitHubProfileCard from '@site/src/components/GitHubProfileCard';
239238
- [#545 Add page contributors section to docs and blog](https://github.com/projectbluefin/documentation/pull/545) by @​castrojo
240239
- [#544 Move communication channels to footer](https://github.com/projectbluefin/documentation/pull/544) by @​castrojo
241240
- [#542 Add blog post on upcoming Homebrew CLI changes](https://github.com/projectbluefin/documentation/pull/542) by @​castrojo
242-
- [#538 feat: implement GitHub data caching to reduce API calls and build times](https://github.com/projectbluefin/documentation/pull/538) by @​copilot-swe-agent
243-
- [#539 Implement gemini-code-assist code review recommendations](https://github.com/projectbluefin/documentation/pull/539) by @​copilot-swe-agent
244241
- [#534 docs: update driver versions](https://github.com/projectbluefin/documentation/pull/534) by @​github-actions
245242
- [#536 docs(donations): add @krisnova to advisors and mentors](https://github.com/projectbluefin/documentation/pull/536) by @​castrojo
246243
- [#535 feat: update contributor guide](https://github.com/projectbluefin/documentation/pull/535) by @​castrojo
@@ -309,6 +306,8 @@ import GitHubProfileCard from '@site/src/components/GitHubProfileCard';
309306
| bluefin | ubot-7274 | 2 |
310307
| bluefin-lts | ubot-7274 | 4 |
311308
| aurora | ubot-7274 | 2 |
309+
| common | copilot-swe-agent | 1 |
310+
| documentation | copilot-swe-agent | 2 |
312311
| dakota | dependabot | 2 |
313312
| distroless | dependabot | 2 |
314313

@@ -323,6 +322,9 @@ import GitHubProfileCard from '@site/src/components/GitHubProfileCard';
323322
- [#939 chore(deps): update quay.io/centos-bootc/centos-bootc:c10s docker digest to d30ad1a](https://github.com/ublue-os/bluefin-lts/pull/939) in ublue-os/bluefin-lts
324323
- [#1411 Action Required: Fix Renovate Configuration](https://github.com/ublue-os/aurora/issues/1411) in ublue-os/aurora
325324
- [#1412 Action Required: Fix Renovate Configuration](https://github.com/ublue-os/aurora/issues/1412) in ublue-os/aurora
325+
- [#36 docs: document Brewfiles and remove non-existent flatpak-extras references](https://github.com/projectbluefin/common/pull/36) in projectbluefin/common
326+
- [#538 feat: implement GitHub data caching to reduce API calls and build times](https://github.com/projectbluefin/documentation/pull/538) in projectbluefin/documentation
327+
- [#539 Implement gemini-code-assist code review recommendations](https://github.com/projectbluefin/documentation/pull/539) in projectbluefin/documentation
326328
- [#10 build(deps): bump actions/checkout from 6.0.0 to 6.0.1](https://github.com/projectbluefin/dakota/pull/10) in projectbluefin/dakota
327329
- [#7 build(deps): bump docker/metadata-action from 5.9.0 to 5.10.0](https://github.com/projectbluefin/dakota/pull/7) in projectbluefin/dakota
328330
- [#10 build(deps): bump actions/checkout from 6.0.0 to 6.0.1](https://github.com/projectbluefin/dakota/pull/10) in projectbluefin/distroless
@@ -358,8 +360,6 @@ Thank you to everyone who contributed this period!
358360

359361
<GitHubProfileCard username="KiKaraage" />
360362

361-
<GitHubProfileCard username="copilot-swe-agent" />
362-
363363
<GitHubProfileCard username="theMimolet" />
364364

365365
<GitHubProfileCard username="tunix" />

scripts/lib/contributor-tracker.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const BOT_PATTERNS = [
1515
/^dependabot\[bot\]$/,
1616
/^renovate\[bot\]$/,
1717
/^github-actions\[bot\]$/,
18+
/^copilot-swe-agent$/,
1819
/^ubot-\d+$/,
1920
/bot$/i, // Catches most bot usernames
2021
];

0 commit comments

Comments
 (0)