Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/cla-signers.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,15 @@
],
"signed_date": "2025-12-31",
"cla_version": "1.0"
},
{
"name": "Sujay Dongre",
"github_username": "sujay-d07",
"emails": [
"sujaydongre07@gmail.com"
],
"signed_date": "2026-01-01",
"cla_version": "1.0"
Comment on lines +71 to +79
Copy link

Copilot AI Jan 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This entry for Sujay Dongre is a duplicate. The same person with the same GitHub username (sujay-d07) and email (sujaydongre07@gmail.com) already exists in the CLA signers list at lines 37-43 with a signed date of "2024-12-29". Adding this duplicate entry will cause issues with CLA validation. Please remove this duplicate entry.

Suggested change
},
{
"name": "Sujay Dongre",
"github_username": "sujay-d07",
"emails": [
"sujaydongre07@gmail.com"
],
"signed_date": "2026-01-01",
"cla_version": "1.0"

Copilot uses AI. Check for mistakes.
}
Comment on lines +72 to 80
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Critical: Duplicate entry for the same individual.

An entry for Sujay Dongre (github_username: sujay-d07, email: sujaydongre07@gmail.com) already exists at lines 37-44 with a signed_date of "2024-12-29". Adding a second entry creates a duplicate record, which violates data integrity for a CLA signers registry.

If the contributor needs to re-sign with an updated date, update the existing entry's signed_date field instead of creating a duplicate.

🔎 Proposed fix: Update existing entry instead of adding duplicate

Remove the new duplicate entry (lines 72-80) and update the existing entry's signed_date:

       "signed_date": "2025-12-31",
       "cla_version": "1.0"
-    },
-    {
-      "name": "Sujay Dongre",
-      "github_username": "sujay-d07",
-      "emails": [
-        "sujaydongre07@gmail.com"
-      ],
-      "signed_date": "2026-01-01",
-      "cla_version": "1.0"
     }
   ],

And update the existing entry at lines 37-44:

     {
       "name": "Sujay Dongre",
       "github_username": "sujay-d07",
       "emails": [
         "sujaydongre07@gmail.com"
       ],
-      "signed_date": "2024-12-29",
+      "signed_date": "2026-01-01",
       "cla_version": "1.0"
     },

Committable suggestion skipped: line range outside the PR's diff.

🤖 Prompt for AI Agents
.github/cla-signers.json lines 72-80 contain a duplicate entry for Sujay Dongre
(github_username: "sujay-d07", email: "sujaydongre07@gmail.com") which already
exists at lines 37-44; remove the duplicate block at lines 72-80 and update the
existing entry at lines 37-44 by setting its signed_date to "2026-01-01" (or the
new intended date) instead of adding a new record.

],
"corporations": {
Expand Down
Loading