From bf47ece78e380e32f6cae3f982999f71e7544203 Mon Sep 17 00:00:00 2001 From: steam_bell_92 Date: Fri, 8 May 2026 10:41:53 +0530 Subject: [PATCH 1/2] Includes other bot account in excluded users list in leaderboard --- src/components/dashboard/LeaderBoard/leaderboard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dashboard/LeaderBoard/leaderboard.tsx b/src/components/dashboard/LeaderBoard/leaderboard.tsx index 32fa0baf..ef93cf48 100644 --- a/src/components/dashboard/LeaderBoard/leaderboard.tsx +++ b/src/components/dashboard/LeaderBoard/leaderboard.tsx @@ -13,7 +13,7 @@ import "./leaderboard.css"; const GITHUB_ORG = "recodehive"; // Users to exclude from the leaderboard -const EXCLUDED_USERS = ["sanjay-kv", "allcontributors", "allcontributors[bot]", "dependabot[bot]"]; +const EXCLUDED_USERS = ["sanjay-kv", "allcontributors", "allcontributors[bot]", "dependabot[bot]", "copilot", "copilot[bot]", "github-actions[bot]", "renovate[bot]", "dependabot-preview[bot]"]; interface PRDetails { title: string; From 46545548c8a21b6474e30a7323bf92ea34ae96ef Mon Sep 17 00:00:00 2001 From: Anuj Kulkarni Date: Fri, 8 May 2026 10:47:32 +0530 Subject: [PATCH 2/2] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- src/components/dashboard/LeaderBoard/leaderboard.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/components/dashboard/LeaderBoard/leaderboard.tsx b/src/components/dashboard/LeaderBoard/leaderboard.tsx index ef93cf48..c4738056 100644 --- a/src/components/dashboard/LeaderBoard/leaderboard.tsx +++ b/src/components/dashboard/LeaderBoard/leaderboard.tsx @@ -13,7 +13,17 @@ import "./leaderboard.css"; const GITHUB_ORG = "recodehive"; // Users to exclude from the leaderboard -const EXCLUDED_USERS = ["sanjay-kv", "allcontributors", "allcontributors[bot]", "dependabot[bot]", "copilot", "copilot[bot]", "github-actions[bot]", "renovate[bot]", "dependabot-preview[bot]"]; +const EXCLUDED_USERS = [ + "sanjay-kv", + "allcontributors", + "allcontributors[bot]", + "dependabot[bot]", + "copilot", + "copilot[bot]", + "github-actions[bot]", + "renovate[bot]", + "dependabot-preview[bot]", +]; interface PRDetails { title: string;