Skip to content

Add Prajal Sharma's GitHub profile information#1120

Open
prajalsharma wants to merge 2 commits intoholdex:mainfrom
prajalsharma:main
Open

Add Prajal Sharma's GitHub profile information#1120
prajalsharma wants to merge 2 commits intoholdex:mainfrom
prajalsharma:main

Conversation

@prajalsharma
Copy link

@prajalsharma prajalsharma commented Feb 4, 2026

Added a new entry for Prajal Sharma with GitHub handle and trial issue link.

Summary by CodeRabbit

  • Chores
    • Added a new team member profile for Prajal Sharma to the team roster.
    • Minor formatting and spacing adjustments in the team profiles list to ensure consistent display.

Added a new entry for Prajal Sharma with GitHub handle and trial issue link.

Signed-off-by: DarthPrajal <prajalsharma1120@gmail.com>
Copilot AI review requested due to automatic review settings February 4, 2026 14:01
@holdex
Copy link

holdex bot commented Feb 4, 2026

Time Submission Status

Member Status Time Action Last Update
@prajalsharma ❌ Missing - ⚠️ Submit time -
zolotokrylin ✅ Submitted 10min Update time Feb 26, 2026, 7:34 AM

You can submit time with the command. Example:

@holdex pr submit-time 15m

See available commands to help comply with our Guidelines.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Feb 4, 2026

Walkthrough

Appends a new team profile object for Prajal Sharma to team_profiles in profile-submission.json; minor surrounding whitespace/indentation changes and an extra opening brace were observed near the Arisht Jain entry.

Changes

Cohort / File(s) Summary
Team profile & nearby JSON formatting
profile-submission.json
Added a new team_profiles object for Prajal Sharma (github_handle, full_name, github_trial_issue_link). Also includes minor indentation/spacing adjustments and an extra { introduced before the Arisht Jain entry.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Suggested reviewers

  • tiffmyaaw
  • markholdex
  • zolotokrylin
🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: adding Prajal Sharma's GitHub profile information to the profile-submission.json file.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Tip

Issue Planner is now in beta. Read the docs and try it out! Share your feedback on Discord.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This pull request aims to add a new profile entry for Prajal Sharma to the team profiles JSON file. However, the changes contain critical JSON syntax errors that prevent the file from being valid JSON.

Changes:

  • Attempted to add a new profile entry with GitHub handle "prajalsharma", full name "Prajal Sharma", and trial issue link

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +896 to +897
"github_trial_issue_link": "https://github.com/holdex/trial/issues/675",
{
Copy link

Copilot AI Feb 4, 2026

Choose a reason for hiding this comment

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

The JSON structure is incorrect. Line 896 should end with a closing brace "}" for the "arishtj" object, but instead a comma was added followed by an opening brace on line 897, creating nested objects instead of separate array elements.

The new entry for "prajalsharma" should be a separate object in the array, not nested within the "arishtj" object. Remove the comma from line 896 and close the "arishtj" object properly with "}" on a new line. Then add a comma after that closing brace and start the new "prajalsharma" object on the following line at the same indentation level as the other profile objects.

Copilot uses AI. Check for mistakes.
Comment on lines +897 to +901
{
"github_handle": "prajalsharma",
"full_name": "Prajal Sharma",
"github_trial_issue_link": "https://github.com/holdex/trial/issues/1112"
}
Copy link

Copilot AI Feb 4, 2026

Choose a reason for hiding this comment

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

Inconsistent indentation for the new profile entry. The opening brace on line 897 and the fields on lines 898-900 do not follow the indentation pattern used by other profile objects in the array. All profile objects should start with consistent indentation (using tabs or spaces matching the rest of the file), with their properties indented one level further.

Copilot uses AI. Check for mistakes.
Comment on lines 896 to 905
"github_trial_issue_link": "https://github.com/holdex/trial/issues/675",
{
"github_handle": "prajalsharma",
"full_name": "Prajal Sharma",
"github_trial_issue_link": "https://github.com/holdex/trial/issues/1112"
}

}
]
}
Copy link

Copilot AI Feb 4, 2026

Choose a reason for hiding this comment

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

Missing comma after the closing brace on line 901. Since this is part of an array of profile objects and not the last element (there's still the closing brace for "arishtj" object on line 903), a comma is needed after line 901 to separate array elements properly.

Suggested change
"github_trial_issue_link": "https://github.com/holdex/trial/issues/675",
{
"github_handle": "prajalsharma",
"full_name": "Prajal Sharma",
"github_trial_issue_link": "https://github.com/holdex/trial/issues/1112"
}
}
]
}
"github_trial_issue_link": "https://github.com/holdex/trial/issues/675"
},
{
"github_handle": "prajalsharma",
"full_name": "Prajal Sharma",
"github_trial_issue_link": "https://github.com/holdex/trial/issues/1112"
}
]
}

Copilot uses AI. Check for mistakes.
Comment on lines 896 to 905
"github_trial_issue_link": "https://github.com/holdex/trial/issues/675",
{
"github_handle": "prajalsharma",
"full_name": "Prajal Sharma",
"github_trial_issue_link": "https://github.com/holdex/trial/issues/1112"
}

}
]
}
Copy link

Copilot AI Feb 4, 2026

Choose a reason for hiding this comment

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

The closing brace on line 903 appears to be an extra brace that would be left over after fixing the JSON structure. Once the "arishtj" object is properly closed before the new "prajalsharma" entry, this brace will be extraneous and should be removed.

Suggested change
"github_trial_issue_link": "https://github.com/holdex/trial/issues/675",
{
"github_handle": "prajalsharma",
"full_name": "Prajal Sharma",
"github_trial_issue_link": "https://github.com/holdex/trial/issues/1112"
}
}
]
}
"github_trial_issue_link": "https://github.com/holdex/trial/issues/675"
},
{
"github_handle": "prajalsharma",
"full_name": "Prajal Sharma",
"github_trial_issue_link": "https://github.com/holdex/trial/issues/1112"
}
]
}

Copilot uses AI. Check for mistakes.
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Fix all issues with AI agents
In `@profile-submission.json`:
- Around line 894-903: The JSON has a malformed object around the entries with
keys "github_handle", "full_name", and "github_trial_issue_link" (arishtj and
prajalsharma): close the first object for "arishtj" before starting the next
object, remove the stray standalone brace/incorrect punctuation, and ensure
objects are either elements of an array or properties of a parent object with
proper commas between them so the structure parses correctly; locate the block
containing "github_handle": "arishtj" and "github_handle": "prajalsharma" and
fix the surrounding braces/commas so each entry is a valid JSON object.

Signed-off-by: DarthPrajal <prajalsharma1120@gmail.com>
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Fix all issues with AI agents
In `@profile-submission.json`:
- Line 893: The opening brace ("{") shown in the diff is indented with a tab
character while the rest of the JSON uses spaces; replace that tab with the
file's standard spaces (match the existing indentation style, e.g., 2 or 4
spaces) so there are no mixed tabs/spaces, and run the JSON/formatter or linter
to normalize indentation across the file.

"github_trial_issue_link": "https://github.com/holdex/trial/issues/1038"
},
{
{
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 | 🟡 Minor

Inconsistent indentation — tab+space instead of spaces.

Line 893 uses a tab character for indentation while the rest of the file uses spaces. Normalize to match.

Suggested fix
-	 {
+    {
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
{
{
🤖 Prompt for AI Agents
In `@profile-submission.json` at line 893, The opening brace ("{") shown in the
diff is indented with a tab character while the rest of the JSON uses spaces;
replace that tab with the file's standard spaces (match the existing indentation
style, e.g., 2 or 4 spaces) so there are no mixed tabs/spaces, and run the
JSON/formatter or linter to normalize indentation across the file.

Copy link
Member

@zolotokrylin zolotokrylin left a comment

Choose a reason for hiding this comment

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

  1. see comments by coderabbit
  2. the issue is not attached to the PR
  3. wrong PR title

See our guidelines

@zolotokrylin
Copy link
Member

@holdex pr submit-time 10m

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants