diff --git a/github-actions/activity-trigger/post-to-skills-issue.js b/github-actions/activity-trigger/post-to-skills-issue.js index 8e20cefb5f..da7bf0c2ab 100644 --- a/github-actions/activity-trigger/post-to-skills-issue.js +++ b/github-actions/activity-trigger/post-to-skills-issue.js @@ -5,6 +5,7 @@ const postComment = require('../utils/post-issue-comment'); const checkTeamMembership = require('../utils/check-team-membership'); const statusFieldIds = require('../utils/_data/status-field-ids'); const mutateIssueStatus = require('../utils/mutate-issue-status'); +const { lookupSkillsDirectory, updateSkillsDirectory } = require('../utils/skills-directory'); // `complexity0` refers `Complexity: Prework` label const SKILLS_LABEL = retrieveLabelDirectory("complexity0"); @@ -33,12 +34,27 @@ async function postToSkillsIssue({github, context}, activity) { console.log(`eventActor is undefined (likely a bot). Cannot post message...`); return; } - - // Get eventActor's Skills Issue number, nodeId, current statusId (all null if no Skills Issue found) - const skillsInfo = await querySkillsIssue(github, context, eventActor, SKILLS_LABEL); + +// Step 1: Try local directory lookup first + let skillsInfo = lookupSkillsDirectory(eventActor); + + if (!skillsInfo) { + console.log(`No cached Skills Issue found for ${eventActor}, querying GitHub...`); + + // Step 2: Fallback to GitHub API + skillsInfo = await querySkillsIssue(github, context, eventActor, SKILLS_LABEL); + + // Step 3: Save result to local directory if found + if (skillsInfo && skillsInfo.issueNum) { + updateSkillsDirectory(eventActor, skillsInfo); + } + } + + // Get eventActor's Skills Issue number, nodeId, current statusId (all null if no Skills Issue found) const skillsIssueNum = skillsInfo.issueNum; const skillsIssueNodeId = skillsInfo.issueId; const skillsStatusId = skillsInfo.statusId; + const commentIdCached = skillsInfo.commentId; const isArchived = skillsInfo.isArchived; // Return immediately if Skills Issue not found @@ -48,48 +64,97 @@ async function postToSkillsIssue({github, context}, activity) { } console.log(` ⮡ Found Skills Issue for ${eventActor}: #${skillsIssueNum}`); - // Get all comments from the Skills Issue - let commentData; - try { - // https://docs.github.com/en/rest/issues/comments?apiVersion=2022-11-28#list-issue-comments - commentData = await github.request('GET /repos/{owner}/{repo}/issues/{issue_number}/comments', { - owner, - repo, - per_page: 100, - issue_number: skillsIssueNum, - }); - } catch (err) { - console.error(` ⮡ GET comments failed for issue #${skillsIssueNum}:`, err); - return; - } + let commentIdToUse = commentIdCached; + let commentFound = null; - // Find the comment that includes the MARKER text and append message - const commentFound = commentData.data.find(comment => comment.body.includes(MARKER)); + // Try cached comment ID first + if (commentIdCached) { + console.log(` ⮡ Found cached comment ID for ${eventActor}: ${commentIdCached}`); + try { + const { data: cachedComment } = await github.request( + 'GET /repos/{owner}/{repo}/issues/comments/{comment_id}', + { + owner, + repo, + comment_id: commentIdCached, + } + ); + + if (cachedComment && cachedComment.body.includes(MARKER)) { + const updatedBody = `${cachedComment.body}\n${message}`; + await github.request('PATCH /repos/{owner}/{repo}/issues/comments/{comment_id}', { + owner, + repo, + comment_id: commentIdCached, + body: updatedBody, + }); + console.log(` ⮡ Updated cached comment #${commentIdCached}`); + return; // Done + } + } catch (err) { + console.warn(` ⮡ Cached comment invalid or not found. Falling back to search.`, err); + commentIdToUse = null; // Force fallback path + } + } - if (commentFound) { - console.log(` ⮡ Found comment with MARKER...`); - const comment_id = commentFound.id; - const originalBody = commentFound.body; - const updatedBody = `${originalBody}\n${message}`; + // Fallback — search for MARKER or create new comment + if (!commentIdToUse) { + console.log(` ⮡ Searching for activity comment marker...`); + let commentData; try { - // https://docs.github.com/en/rest/issues/comments?apiVersion=2022-11-28#update-an-issue-comment - await github.request('PATCH /repos/{owner}/{repo}/issues/comments/{comment_id}', { - owner, - repo, - comment_id, - body: updatedBody - }); - console.log(` ⮡ Entry posted to Skills Issue #${skillsIssueNum}`); + commentData = await github.request( + 'GET /repos/{owner}/{repo}/issues/{issue_number}/comments', + { + owner, + repo, + per_page: 100, + issue_number: skillsIssueNum, + } + ); } catch (err) { - console.error(` ⮡ Something went wrong posting entry to #${skillsIssueNum}:`, err); + console.error(` ⮡ GET comments failed for issue #${skillsIssueNum}:`, err); + return; } - - } else { - console.log(` ⮡ MARKER not found, creating new comment entry with MARKER...`); - const body = `${MARKER}\n## Activity Log: ${eventActor}\n### Repo: https://github.com/hackforla/website\n\n##### ⚠ Important note: The bot updates this comment automatically - do not edit\n\n${message}`; - const commentPosted = await postComment(skillsIssueNum, body, github, context); - if (commentPosted) { - console.log(` ⮡ Entry posted to Skills Issue #${skillsIssueNum}`); + + commentFound = commentData.data.find((comment) => comment.body.includes(MARKER)); + + if (commentFound) { + console.log(` ⮡ Found comment with MARKER...`); + const comment_id = commentFound.id; + const originalBody = commentFound.body; + const updatedBody = `${originalBody}\n${message}`; + try { + await github.request('PATCH /repos/{owner}/{repo}/issues/comments/{comment_id}', { + owner, + repo, + comment_id, + body: updatedBody, + }); + console.log(` ⮡ Entry posted to Skills Issue #${skillsIssueNum}`); + // Cache this comment ID + updateSkillsDirectory(eventActor, { commentId: comment_id }); + } catch (err) { + console.error(` ⮡ Something went wrong posting entry to #${skillsIssueNum}:`, err); + } + } else { + console.log(` ⮡ MARKER not found, creating new comment entry with MARKER...`); + const body = `${MARKER}\n## Activity Log: ${eventActor}\n### Repo: https://github.com/hackforla/website\n\n##### ⚠ Important note: The bot updates this comment automatically - do not edit\n\n${message}`; + try { + const { data: newComment } = await github.request( + 'POST /repos/{owner}/{repo}/issues/{issue_number}/comments', + { + owner, + repo, + issue_number: skillsIssueNum, + body, + } + ); + console.log(` ⮡ Entry posted to Skills Issue #${skillsIssueNum}`); + // Cache new comment ID + updateSkillsDirectory(eventActor, { commentId: newComment.id }); + } catch (err) { + console.error(` ⮡ Failed to create new comment for issue #${skillsIssueNum}:`, err); + } } } @@ -97,7 +162,7 @@ async function postToSkillsIssue({github, context}, activity) { if (!(message.includes('closed') || message.includes('assigned') || isArchived)) { // If eventActor is team member, open issue and move to "In progress" - const isActiveMember = await checkTeamMembership(github, context, eventActor, TEAM); + const isActiveMember = await checkTeamMembership(github, context, eventActor, TEAM); if (isActiveMember) { try { @@ -121,4 +186,4 @@ async function postToSkillsIssue({github, context}, activity) { } -module.exports = postToSkillsIssue; \ No newline at end of file +module.exports = postToSkillsIssue; diff --git a/github-actions/utils/_data/skills-directory.json b/github-actions/utils/_data/skills-directory.json new file mode 100644 index 0000000000..58cdfb8fd2 --- /dev/null +++ b/github-actions/utils/_data/skills-directory.json @@ -0,0 +1,6018 @@ +[ + { + "username": "025Parag", + "issue": 5083, + "node id": "IC_kwDOB7-mp869FrzA", + "id": 3172383936, + "URL": "https://github.com/hackforla/website/issues/5083", + "skills": "SKILLS ISSUE" + }, + { + "username": "1anya1", + "issue": 2784, + "node id": "IC_kwDOB7-mp869Fry9", + "id": 3172383933, + "URL": "https://github.com/hackforla/website/issues/2784", + "skills": "SKILLS ISSUE" + }, + { + "username": "1x55", + "issue": 5359, + "node id": "IC_kwDOB7-mp869FrzC", + "id": 3172383938, + "URL": "https://github.com/hackforla/website/issues/5359", + "skills": "SKILLS ISSUE" + }, + { + "username": "5amlim", + "issue": 4977, + "node id": "IC_kwDOB7-mp869Fry-", + "id": 3172383934, + "URL": "https://github.com/hackforla/website/issues/4977", + "skills": "SKILLS ISSUE" + }, + { + "username": "8alpreet", + "issue": 7205, + "node id": "IC_kwDOB7-mp869FrzF", + "id": 3172383941, + "URL": "https://github.com/hackforla/website/issues/7205", + "skills": "SKILLS ISSUE" + }, + { + "username": "93Belen", + "issue": 4631, + "node id": "IC_kwDOB7-mp869FrzG", + "id": 3172383942, + "URL": "https://github.com/hackforla/website/issues/4631", + "skills": "SKILLS ISSUE" + }, + { + "username": "aadilahmed", + "issue": 4980, + "node id": "IC_kwDOB7-mp869FrzE", + "id": 3172383940, + "URL": "https://github.com/hackforla/website/issues/4980", + "skills": "SKILLS ISSUE" + }, + { + "username": "aahx", + "issue": 4612, + "node id": "IC_kwDOB7-mp869FuXI", + "id": 3172394440, + "URL": "https://github.com/hackforla/website/issues/4612", + "skills": "SKILLS ISSUE" + }, + { + "username": "aaronweixiangli", + "issue": 4165, + "node id": "IC_kwDOB7-mp869FuW-", + "id": 3172394430, + "URL": "https://github.com/hackforla/website/issues/4165", + "skills": "SKILLS ISSUE" + }, + { + "username": "abdiaz2018", + "issue": 3508, + "node id": "IC_kwDOB7-mp869FuXU", + "id": 3172394452, + "URL": "https://github.com/hackforla/website/issues/3508", + "skills": "SKILLS ISSUE" + }, + { + "username": "A-BMT02", + "issue": 2839, + "node id": "IC_kwDOB7-mp869FrzH", + "id": 3172383943, + "URL": "https://github.com/hackforla/website/issues/2839", + "skills": "SKILLS ISSUE" + }, + { + "username": "Abrosss", + "issue": 3919, + "node id": "IC_kwDOB7-mp869FuXC", + "id": 3172394434, + "URL": "https://github.com/hackforla/website/issues/3919", + "skills": "SKILLS ISSUE" + }, + { + "username": "aconstas", + "issue": 6339, + "node id": "IC_kwDOB7-mp869FuXF", + "id": 3172394437, + "URL": "https://github.com/hackforla/website/issues/6339", + "skills": "SKILLS ISSUE" + }, + { + "username": "acterin", + "issue": 7828, + "node id": "IC_kwDOB7-mp869FuXG", + "id": 3172394438, + "URL": "https://github.com/hackforla/website/issues/7828", + "skills": "SKILLS ISSUE" + }, + { + "username": "Adaakal", + "issue": 3782, + "node id": "IC_kwDOB7-mp869FuXg", + "id": 3172394464, + "URL": "https://github.com/hackforla/website/issues/3782", + "skills": "SKILLS ISSUE" + }, + { + "username": "Adastros", + "issue": 3685, + "node id": "IC_kwDOB7-mp869Hl3R", + "id": 3172883921, + "URL": "https://github.com/hackforla/website/issues/3685", + "skills": "SKILLS ISSUE" + }, + { + "username": "adeoyevictor", + "issue": 5480, + "node id": "IC_kwDOB7-mp869FuW5", + "id": 3172394425, + "URL": "https://github.com/hackforla/website/issues/5480", + "skills": "SKILLS ISSUE" + }, + { + "username": "adevlinb", + "issue": 4171, + "node id": "IC_kwDOB7-mp869FuXA", + "id": 3172394432, + "URL": "https://github.com/hackforla/website/issues/4171", + "skills": "SKILLS ISSUE" + }, + { + "username": "ADITYAS1000", + "issue": 6882, + "node id": "IC_kwDOB7-mp869FuXQ", + "id": 3172394448, + "URL": "https://github.com/hackforla/website/issues/6882", + "skills": "SKILLS ISSUE" + }, + { + "username": "adom2128", + "issue": 6244, + "node id": "IC_kwDOB7-mp869FuW7", + "id": 3172394427, + "URL": "https://github.com/hackforla/website/issues/6244", + "skills": "SKILLS ISSUE" + }, + { + "username": "adrianang", + "issue": 4718, + "node id": "IC_kwDOB7-mp869Hl3Z", + "id": 3172883929, + "URL": "https://github.com/hackforla/website/issues/4718", + "skills": "SKILLS ISSUE" + }, + { + "username": "agosmou", + "issue": 3787, + "node id": "IC_kwDOB7-mp869FuXN", + "id": 3172394445, + "URL": "https://github.com/hackforla/website/issues/3787", + "skills": "SKILLS ISSUE" + }, + { + "username": "aguilar-victor", + "issue": 8007, + "node id": "IC_kwDOB7-mp869Hl3I", + "id": 3172883912, + "URL": "https://github.com/hackforla/website/issues/8007", + "skills": "SKILLS ISSUE" + }, + { + "username": "agutiernc", + "issue": 4984, + "node id": "IC_kwDOB7-mp869Hl3U", + "id": 3172883924, + "URL": "https://github.com/hackforla/website/issues/4984", + "skills": "SKILLS ISSUE" + }, + { + "username": "AHP15", + "issue": 4625, + "node id": "IC_kwDOB7-mp869FuWZ", + "id": 3172394393, + "URL": "https://github.com/hackforla/website/issues/4625", + "skills": "SKILLS ISSUE" + }, + { + "username": "aidanwsimmons", + "issue": 5722, + "node id": "IC_kwDOB7-mp869Hl3V", + "id": 3172883925, + "URL": "https://github.com/hackforla/website/issues/5722", + "skills": "SKILLS ISSUE" + }, + { + "username": "aidenjlee4321", + "issue": 6028, + "node id": "IC_kwDOB7-mp869FuXT", + "id": 3172394451, + "URL": "https://github.com/hackforla/website/issues/6028", + "skills": "SKILLS ISSUE" + }, + { + "username": "aidenshaw07", + "issue": 5230, + "node id": "IC_kwDOB7-mp869FuXX", + "id": 3172394455, + "URL": "https://github.com/hackforla/website/issues/5230", + "skills": "SKILLS ISSUE" + }, + { + "username": "ajb176", + "issue": 5232, + "node id": "IC_kwDOB7-mp869Hl3d", + "id": 3172883933, + "URL": "https://github.com/hackforla/website/issues/5232", + "skills": "SKILLS ISSUE" + }, + { + "username": "aksanna", + "issue": 3380, + "node id": "IC_kwDOB7-mp869Hl3M", + "id": 3172883916, + "URL": "https://github.com/hackforla/website/issues/3380", + "skills": "SKILLS ISSUE" + }, + { + "username": "alabador", + "issue": 7019, + "node id": "IC_kwDOB7-mp869FuXS", + "id": 3172394450, + "URL": "https://github.com/hackforla/website/issues/7019", + "skills": "SKILLS ISSUE" + }, + { + "username": "alan-zambrano", + "issue": 3127, + "node id": "IC_kwDOB7-mp869Hl3P", + "id": 3172883919, + "URL": "https://github.com/hackforla/website/issues/3127", + "skills": "SKILLS ISSUE" + }, + { + "username": "alfredo-mejia", + "issue": 3054, + "node id": "IC_kwDOB7-mp869FuXB", + "id": 3172394433, + "URL": "https://github.com/hackforla/website/issues/3054", + "skills": "SKILLS ISSUE" + }, + { + "username": "alice-milmac", + "issue": 3379, + "node id": "IC_kwDOB7-mp869Hl3T", + "id": 3172883923, + "URL": "https://github.com/hackforla/website/issues/3379", + "skills": "SKILLS ISSUE" + }, + { + "username": "allanjlopez", + "issue": 7520, + "node id": "IC_kwDOB7-mp869Hl3J", + "id": 3172883913, + "URL": "https://github.com/hackforla/website/issues/7520", + "skills": "SKILLS ISSUE" + }, + { + "username": "allison-truhlar", + "issue": 5213, + "node id": "IC_kwDOB7-mp869FuWm", + "id": 3172394406, + "URL": "https://github.com/hackforla/website/issues/5213", + "skills": "SKILLS ISSUE" + }, + { + "username": "AllMikeNoIke", + "issue": 8132, + "node id": "IC_kwDOB7-mp869FuXf", + "id": 3172394463, + "URL": "https://github.com/hackforla/website/issues/8132", + "skills": "SKILLS ISSUE" + }, + { + "username": "Alsuang", + "issue": 4069, + "node id": "IC_kwDOB7-mp869FuXd", + "id": 3172394461, + "URL": "https://github.com/hackforla/website/issues/4069", + "skills": "SKILLS ISSUE" + }, + { + "username": "amandaputney", + "issue": 5863, + "node id": "IC_kwDOB7-mp869FuXY", + "id": 3172394456, + "URL": "https://github.com/hackforla/website/issues/5863", + "skills": "SKILLS ISSUE" + }, + { + "username": "amath95", + "issue": 4337, + "node id": "IC_kwDOB7-mp869FuWg", + "id": 3172394400, + "URL": "https://github.com/hackforla/website/issues/4337", + "skills": "SKILLS ISSUE" + }, + { + "username": "Anahisv23", + "issue": 5778, + "node id": "IC_kwDOB7-mp869Hl3Q", + "id": 3172883920, + "URL": "https://github.com/hackforla/website/issues/5778", + "skills": "SKILLS ISSUE" + }, + { + "username": "andrea264", + "issue": 8098, + "node id": "IC_kwDOB7-mp869FuWX", + "id": 3172394391, + "URL": "https://github.com/hackforla/website/issues/8098", + "skills": "SKILLS ISSUE" + }, + { + "username": "andyarensman", + "issue": 3970, + "node id": "IC_kwDOB7-mp869FuWo", + "id": 3172394408, + "URL": "https://github.com/hackforla/website/issues/3970", + "skills": "SKILLS ISSUE" + }, + { + "username": "AndyB909", + "issue": 4617, + "node id": "IC_kwDOB7-mp869FuWP", + "id": 3172394383, + "URL": "https://github.com/hackforla/website/issues/4617", + "skills": "SKILLS ISSUE" + }, + { + "username": "andyphancode", + "issue": 6875, + "node id": "IC_kwDOB7-mp869FuW2", + "id": 3172394422, + "URL": "https://github.com/hackforla/website/issues/6875", + "skills": "SKILLS ISSUE" + }, + { + "username": "andyvu923", + "issue": 8028, + "node id": "IC_kwDOB7-mp869FuWf", + "id": 3172394399, + "URL": "https://github.com/hackforla/website/issues/8028", + "skills": "SKILLS ISSUE" + }, + { + "username": "angela-lee1", + "issue": 5776, + "node id": "IC_kwDOB7-mp869FuWu", + "id": 3172394414, + "URL": "https://github.com/hackforla/website/issues/5776", + "skills": "SKILLS ISSUE" + }, + { + "username": "angelenelm", + "issue": 3708, + "node id": "IC_kwDOB7-mp869FuWl", + "id": 3172394405, + "URL": "https://github.com/hackforla/website/issues/3708", + "skills": "SKILLS ISSUE" + }, + { + "username": "angietechcafe", + "issue": 3187, + "node id": "IC_kwDOB7-mp869FuWr", + "id": 3172394411, + "URL": "https://github.com/hackforla/website/issues/3187", + "skills": "SKILLS ISSUE" + }, + { + "username": "angieyan", + "issue": 3813, + "node id": "IC_kwDOB7-mp869FuWz", + "id": 3172394419, + "URL": "https://github.com/hackforla/website/issues/3813", + "skills": "SKILLS ISSUE" + }, + { + "username": "angkitha", + "issue": 7837, + "node id": "IC_kwDOB7-mp869FuWW", + "id": 3172394390, + "URL": "https://github.com/hackforla/website/issues/7837", + "skills": "SKILLS ISSUE" + }, + { + "username": "anh628", + "issue": 5605, + "node id": "IC_kwDOB7-mp869FuWU", + "id": 3172394388, + "URL": "https://github.com/hackforla/website/issues/5605", + "skills": "SKILLS ISSUE" + }, + { + "username": "annierm18", + "issue": 3709, + "node id": "IC_kwDOB7-mp869FuWR", + "id": 3172394385, + "URL": "https://github.com/hackforla/website/issues/3709", + "skills": "SKILLS ISSUE" + }, + { + "username": "answebdev", + "issue": 2782, + "node id": "IC_kwDOB7-mp869FuXR", + "id": 3172394449, + "URL": "https://github.com/hackforla/website/issues/2782", + "skills": "SKILLS ISSUE" + }, + { + "username": "anthonylo87", + "issue": 4316, + "node id": "IC_kwDOB7-mp869FuWp", + "id": 3172394409, + "URL": "https://github.com/hackforla/website/issues/4316", + "skills": "SKILLS ISSUE" + }, + { + "username": "anthonypz", + "issue": 4616, + "node id": "IC_kwDOB7-mp869FuWw", + "id": 3172394416, + "URL": "https://github.com/hackforla/website/issues/4616", + "skills": "SKILLS ISSUE" + }, + { + "username": "anthonysim", + "issue": 2521, + "node id": "IC_kwDOB7-mp869FuWk", + "id": 3172394404, + "URL": "https://github.com/hackforla/website/issues/2521", + "skills": "SKILLS ISSUE" + }, + { + "username": "antho-zng", + "issue": 5349, + "node id": "IC_kwDOB7-mp869FuWi", + "id": 3172394402, + "URL": "https://github.com/hackforla/website/issues/5349", + "skills": "SKILLS ISSUE" + }, + { + "username": "aqandrew", + "issue": 6429, + "node id": "IC_kwDOB7-mp869FuWs", + "id": 3172394412, + "URL": "https://github.com/hackforla/website/issues/6429", + "skills": "SKILLS ISSUE" + }, + { + "username": "aramattamara", + "issue": 5559, + "node id": "IC_kwDOB7-mp869FuW0", + "id": 3172394420, + "URL": "https://github.com/hackforla/website/issues/5559", + "skills": "SKILLS ISSUE" + }, + { + "username": "arcan9", + "issue": 4066, + "node id": "IC_kwDOB7-mp869Hl3Y", + "id": 3172883928, + "URL": "https://github.com/hackforla/website/issues/4066", + "skills": "SKILLS ISSUE" + }, + { + "username": "ArchilChovatiya", + "issue": 5081, + "node id": "IC_kwDOB7-mp869FuWS", + "id": 3172394386, + "URL": "https://github.com/hackforla/website/issues/5081", + "skills": "SKILLS ISSUE" + }, + { + "username": "arfgit", + "issue": 4313, + "node id": "IC_kwDOB7-mp869FuWT", + "id": 3172394387, + "URL": "https://github.com/hackforla/website/issues/4313", + "skills": "SKILLS ISSUE" + }, + { + "username": "AricayaJohn", + "issue": 8138, + "node id": "IC_kwDOB7-mp869FuWy", + "id": 3172394418, + "URL": "https://github.com/hackforla/website/issues/8138", + "skills": "SKILLS ISSUE" + }, + { + "username": "aricforrest", + "issue": 3541, + "node id": "IC_kwDOB7-mp869FuW_", + "id": 3172394431, + "URL": "https://github.com/hackforla/website/issues/3541", + "skills": "SKILLS ISSUE" + }, + { + "username": "ariellockett2", + "issue": 8005, + "node id": "IC_kwDOB7-mp869FuXL", + "id": 3172394443, + "URL": "https://github.com/hackforla/website/issues/8005", + "skills": "SKILLS ISSUE" + }, + { + "username": "arora-aryan", + "issue": 3981, + "node id": "IC_kwDOB7-mp869FuWa", + "id": 3172394394, + "URL": "https://github.com/hackforla/website/issues/3981", + "skills": "SKILLS ISSUE" + }, + { + "username": "arpitapandya", + "issue": 3152, + "node id": "IC_kwDOB7-mp869Hl3c", + "id": 3172883932, + "URL": "https://github.com/hackforla/website/issues/3152", + "skills": "SKILLS ISSUE" + }, + { + "username": "ArshiaZargarani", + "issue": 5072, + "node id": "IC_kwDOB7-mp869FuWj", + "id": 3172394403, + "URL": "https://github.com/hackforla/website/issues/5072", + "skills": "SKILLS ISSUE" + }, + { + "username": "ArtinNazarian", + "issue": 6418, + "node id": "IC_kwDOB7-mp869FuWt", + "id": 3172394413, + "URL": "https://github.com/hackforla/website/issues/6418", + "skills": "SKILLS ISSUE" + }, + { + "username": "a-sana", + "issue": 6413, + "node id": "IC_kwDOB7-mp869Fry_", + "id": 3172383935, + "URL": "https://github.com/hackforla/website/issues/6413", + "skills": "SKILLS ISSUE" + }, + { + "username": "AsherEngelberg", + "issue": 3268, + "node id": "IC_kwDOB7-mp869FuWe", + "id": 3172394398, + "URL": "https://github.com/hackforla/website/issues/3268", + "skills": "SKILLS ISSUE" + }, + { + "username": "aswutmaxcy", + "issue": 6424, + "node id": "IC_kwDOB7-mp869FuW1", + "id": 3172394421, + "URL": "https://github.com/hackforla/website/issues/6424", + "skills": "SKILLS ISSUE" + }, + { + "username": "atbalaji", + "issue": 6119, + "node id": "IC_kwDOB7-mp869FuWQ", + "id": 3172394384, + "URL": "https://github.com/hackforla/website/issues/6119", + "skills": "SKILLS ISSUE" + }, + { + "username": "a-t-klein", + "issue": 5074, + "node id": "IC_kwDOB7-mp869FrzD", + "id": 3172383939, + "URL": "https://github.com/hackforla/website/issues/5074", + "skills": "SKILLS ISSUE" + }, + { + "username": "attali-david", + "issue": 3509, + "node id": "IC_kwDOB7-mp869Hl3K", + "id": 3172883914, + "URL": "https://github.com/hackforla/website/issues/3509", + "skills": "SKILLS ISSUE" + }, + { + "username": "AudreyRose-Wooden", + "issue": 5210, + "node id": "IC_kwDOB7-mp869FuWn", + "id": 3172394407, + "URL": "https://github.com/hackforla/website/issues/5210", + "skills": "SKILLS ISSUE" + }, + { + "username": "augustocerdeira", + "issue": 4720, + "node id": "IC_kwDOB7-mp869FuWb", + "id": 3172394395, + "URL": "https://github.com/hackforla/website/issues/4720", + "skills": "SKILLS ISSUE" + }, + { + "username": "Autisticturtle3", + "issue": 5606, + "node id": "IC_kwDOB7-mp869Hl3L", + "id": 3172883915, + "URL": "https://github.com/hackforla/website/issues/5606", + "skills": "SKILLS ISSUE" + }, + { + "username": "awellsbiz", + "issue": 5089, + "node id": "IC_kwDOB7-mp869Hl3N", + "id": 3172883917, + "URL": "https://github.com/hackforla/website/issues/5089", + "skills": "SKILLS ISSUE" + }, + { + "username": "A-Wu5", + "issue": 5479, + "node id": "IC_kwDOB7-mp869FrzB", + "id": 3172383937, + "URL": "https://github.com/hackforla/website/issues/5479", + "skills": "SKILLS ISSUE" + }, + { + "username": "aymeviviana", + "issue": 8272, + "node id": "IC_kwDOB7-mp86_ptjq", + "id": 3215382762, + "URL": "https://github.com/hackforla/website/issues/8272", + "skills": "SKILLS ISSUE" + }, + { + "username": "Ayrh1", + "issue": 6342, + "node id": "IC_kwDOB7-mp869FuXW", + "id": 3172394454, + "URL": "https://github.com/hackforla/website/issues/6342", + "skills": "SKILLS ISSUE" + }, + { + "username": "aysung8191", + "issue": 5084, + "node id": "IC_kwDOB7-mp869FuWV", + "id": 3172394389, + "URL": "https://github.com/hackforla/website/issues/5084", + "skills": "SKILLS ISSUE" + }, + { + "username": "AzaniaBG", + "issue": 3554, + "node id": "IC_kwDOB7-mp869FuW6", + "id": 3172394426, + "URL": "https://github.com/hackforla/website/issues/3554", + "skills": "SKILLS ISSUE" + }, + { + "username": "Beatriz-G", + "issue": 6530, + "node id": "IC_kwDOB7-mp869FuWc", + "id": 3172394396, + "URL": "https://github.com/hackforla/website/issues/6530", + "skills": "SKILLS ISSUE" + }, + { + "username": "BeckettOBrien", + "issue": 3267, + "node id": "IC_kwDOB7-mp869Hl3a", + "id": 3172883930, + "URL": "https://github.com/hackforla/website/issues/3267", + "skills": "SKILLS ISSUE" + }, + { + "username": "belunatic", + "issue": 7699, + "node id": "IC_kwDOB7-mp869FuXe", + "id": 3172394462, + "URL": "https://github.com/hackforla/website/issues/7699", + "skills": "SKILLS ISSUE" + }, + { + "username": "bexux", + "issue": 7206, + "node id": "IC_kwDOB7-mp869FuW8", + "id": 3172394428, + "URL": "https://github.com/hackforla/website/issues/7206", + "skills": "SKILLS ISSUE" + }, + { + "username": "BlakePeters99", + "issue": 7694, + "node id": "IC_kwDOB7-mp869FuWh", + "id": 3172394401, + "URL": "https://github.com/hackforla/website/issues/7694", + "skills": "SKILLS ISSUE" + }, + { + "username": "blaycoder", + "issue": 5500, + "node id": "IC_kwDOB7-mp869FuXZ", + "id": 3172394457, + "URL": "https://github.com/hackforla/website/issues/5500", + "skills": "SKILLS ISSUE" + }, + { + "username": "bluechocolate2019", + "issue": 4969, + "node id": "IC_kwDOB7-mp869FuXD", + "id": 3172394435, + "URL": "https://github.com/hackforla/website/issues/4969", + "skills": "SKILLS ISSUE" + }, + { + "username": "blulady", + "issue": 2683, + "node id": "IC_kwDOB7-mp869Hl3g", + "id": 3172883936, + "URL": "https://github.com/hackforla/website/issues/2683", + "skills": "SKILLS ISSUE" + }, + { + "username": "bofadev", + "issue": 7838, + "node id": "IC_kwDOB7-mp869FuWq", + "id": 3172394410, + "URL": "https://github.com/hackforla/website/issues/7838", + "skills": "SKILLS ISSUE" + }, + { + "username": "bootcamp-brian", + "issue": 3912, + "node id": "IC_kwDOB7-mp869Hl3X", + "id": 3172883927, + "URL": "https://github.com/hackforla/website/issues/3912", + "skills": "SKILLS ISSUE" + }, + { + "username": "bphan002", + "issue": 4060, + "node id": "IC_kwDOB7-mp869FuXM", + "id": 3172394444, + "URL": "https://github.com/hackforla/website/issues/4060", + "skills": "SKILLS ISSUE" + }, + { + "username": "braguda", + "issue": 3406, + "node id": "IC_kwDOB7-mp869FuXV", + "id": 3172394453, + "URL": "https://github.com/hackforla/website/issues/3406", + "skills": "SKILLS ISSUE" + }, + { + "username": "Brandoncyu", + "issue": 7331, + "node id": "IC_kwDOB7-mp869FuWY", + "id": 3172394392, + "URL": "https://github.com/hackforla/website/issues/7331", + "skills": "SKILLS ISSUE" + }, + { + "username": "Brayheart", + "issue": 6345, + "node id": "IC_kwDOB7-mp869FuXE", + "id": 3172394436, + "URL": "https://github.com/hackforla/website/issues/6345", + "skills": "SKILLS ISSUE" + }, + { + "username": "BrianCodes33", + "issue": 2717, + "node id": "IC_kwDOB7-mp869FuXK", + "id": 3172394442, + "URL": "https://github.com/hackforla/website/issues/2717", + "skills": "SKILLS ISSUE" + }, + { + "username": "brianf4", + "issue": 3831, + "node id": "IC_kwDOB7-mp869FuXP", + "id": 3172394447, + "URL": "https://github.com/hackforla/website/issues/3831", + "skills": "SKILLS ISSUE" + }, + { + "username": "brianhjoo", + "issue": 5094, + "node id": "IC_kwDOB7-mp869FuWv", + "id": 3172394415, + "URL": "https://github.com/hackforla/website/issues/5094", + "skills": "SKILLS ISSUE" + }, + { + "username": "briip", + "issue": 6603, + "node id": "IC_kwDOB7-mp869FuWd", + "id": 3172394397, + "URL": "https://github.com/hackforla/website/issues/6603", + "skills": "SKILLS ISSUE" + }, + { + "username": "buneeIsSlo", + "issue": 6956, + "node id": "IC_kwDOB7-mp869FuW9", + "id": 3172394429, + "URL": "https://github.com/hackforla/website/issues/6956", + "skills": "SKILLS ISSUE" + }, + { + "username": "bzzz-coding", + "issue": 3784, + "node id": "IC_kwDOB7-mp869Hl3b", + "id": 3172883931, + "URL": "https://github.com/hackforla/website/issues/3784", + "skills": "SKILLS ISSUE" + }, + { + "username": "callmelazarus", + "issue": 4160, + "node id": "IC_kwDOB7-mp869FuW3", + "id": 3172394423, + "URL": "https://github.com/hackforla/website/issues/4160", + "skills": "SKILLS ISSUE" + }, + { + "username": "CalvinTan607", + "issue": 3389, + "node id": "IC_kwDOB7-mp869FuXb", + "id": 3172394459, + "URL": "https://github.com/hackforla/website/issues/3389", + "skills": "SKILLS ISSUE" + }, + { + "username": "Carlos-A-P", + "issue": 2753, + "node id": "IC_kwDOB7-mp869FuXJ", + "id": 3172394441, + "URL": "https://github.com/hackforla/website/issues/2753", + "skills": "SKILLS ISSUE" + }, + { + "username": "carlosm22700", + "issue": 6338, + "node id": "IC_kwDOB7-mp869FuXH", + "id": 3172394439, + "URL": "https://github.com/hackforla/website/issues/6338", + "skills": "SKILLS ISSUE" + }, + { + "username": "carolemlago", + "issue": 3543, + "node id": "IC_kwDOB7-mp869FuXc", + "id": 3172394460, + "URL": "https://github.com/hackforla/website/issues/3543", + "skills": "SKILLS ISSUE" + }, + { + "username": "caz002", + "issue": 8128, + "node id": "IC_kwDOB7-mp869HmX0", + "id": 3172886004, + "URL": "https://github.com/hackforla/website/issues/8128", + "skills": "SKILLS ISSUE" + }, + { + "username": "ccelest1", + "issue": 5355, + "node id": "IC_kwDOB7-mp869HmXx", + "id": 3172886001, + "URL": "https://github.com/hackforla/website/issues/5355", + "skills": "SKILLS ISSUE" + }, + { + "username": "cchrizzle", + "issue": 6950, + "node id": "IC_kwDOB7-mp869HmX3", + "id": 3172886007, + "URL": "https://github.com/hackforla/website/issues/6950", + "skills": "SKILLS ISSUE" + }, + { + "username": "ccortega2023", + "issue": 3783, + "node id": "IC_kwDOB7-mp869HmX8", + "id": 3172886012, + "URL": "https://github.com/hackforla/website/issues/3783", + "skills": "SKILLS ISSUE" + }, + { + "username": "celinalou92", + "issue": 5217, + "node id": "IC_kwDOB7-mp869HmX5", + "id": 3172886009, + "URL": "https://github.com/hackforla/website/issues/5217", + "skills": "SKILLS ISSUE" + }, + { + "username": "cflemmonds", + "issue": 6830, + "node id": "IC_kwDOB7-mp869HmXy", + "id": 3172886002, + "URL": "https://github.com/hackforla/website/issues/6830", + "skills": "SKILLS ISSUE" + }, + { + "username": "charliepsheppard", + "issue": 5484, + "node id": "IC_kwDOB7-mp869HmXz", + "id": 3172886003, + "URL": "https://github.com/hackforla/website/issues/5484", + "skills": "SKILLS ISSUE" + }, + { + "username": "ChrisKildunne", + "issue": 5864, + "node id": "IC_kwDOB7-mp869HmX4", + "id": 3172886008, + "URL": "https://github.com/hackforla/website/issues/5864", + "skills": "SKILLS ISSUE" + }, + { + "username": "Chrisklangley", + "issue": 5729, + "node id": "IC_kwDOB7-mp869HmYS", + "id": 3172886034, + "URL": "https://github.com/hackforla/website/issues/5729", + "skills": "SKILLS ISSUE" + }, + { + "username": "chrismenke45", + "issue": 3828, + "node id": "IC_kwDOB7-mp869HmYb", + "id": 3172886043, + "URL": "https://github.com/hackforla/website/issues/3828", + "skills": "SKILLS ISSUE" + }, + { + "username": "christinaor", + "issue": 3827, + "node id": "IC_kwDOB7-mp869HmYZ", + "id": 3172886041, + "URL": "https://github.com/hackforla/website/issues/3827", + "skills": "SKILLS ISSUE" + }, + { + "username": "Christopher-Chhim", + "issue": 7889, + "node id": "IC_kwDOB7-mp869HmYB", + "id": 3172886017, + "URL": "https://github.com/hackforla/website/issues/7889", + "skills": "SKILLS ISSUE" + }, + { + "username": "chrjl", + "issue": 7426, + "node id": "IC_kwDOB7-mp869HmYK", + "id": 3172886026, + "URL": "https://github.com/hackforla/website/issues/7426", + "skills": "SKILLS ISSUE" + }, + { + "username": "Claudiahamilton-png", + "issue": 3051, + "node id": "IC_kwDOB7-mp869HmYM", + "id": 3172886028, + "URL": "https://github.com/hackforla/website/issues/3051", + "skills": "SKILLS ISSUE" + }, + { + "username": "clayton1111", + "issue": 3266, + "node id": "IC_kwDOB7-mp869HmYO", + "id": 3172886030, + "URL": "https://github.com/hackforla/website/issues/3266", + "skills": "SKILLS ISSUE" + }, + { + "username": "Cloid", + "issue": 6599, + "node id": "IC_kwDOB7-mp869HmYR", + "id": 3172886033, + "URL": "https://github.com/hackforla/website/issues/6599", + "skills": "SKILLS ISSUE" + }, + { + "username": "clydeautin", + "issue": 7692, + "node id": "IC_kwDOB7-mp869HmYi", + "id": 3172886050, + "URL": "https://github.com/hackforla/website/issues/7692", + "skills": "SKILLS ISSUE" + }, + { + "username": "cmedina-dev", + "issue": 4317, + "node id": "IC_kwDOB7-mp869HmYT", + "id": 3172886035, + "URL": "https://github.com/hackforla/website/issues/4317", + "skills": "SKILLS ISSUE" + }, + { + "username": "cng008", + "issue": 4319, + "node id": "IC_kwDOB7-mp869HmYG", + "id": 3172886022, + "URL": "https://github.com/hackforla/website/issues/4319", + "skills": "SKILLS ISSUE" + }, + { + "username": "codessi", + "issue": 2747, + "node id": "IC_kwDOB7-mp869HmYE", + "id": 3172886020, + "URL": "https://github.com/hackforla/website/issues/2747", + "skills": "SKILLS ISSUE" + }, + { + "username": "codinghorizons", + "issue": 4075, + "node id": "IC_kwDOB7-mp869HmX2", + "id": 3172886006, + "URL": "https://github.com/hackforla/website/issues/4075", + "skills": "SKILLS ISSUE" + }, + { + "username": "coding-yost", + "issue": 6038, + "node id": "IC_kwDOB7-mp869HmYC", + "id": 3172886018, + "URL": "https://github.com/hackforla/website/issues/6038", + "skills": "SKILLS ISSUE" + }, + { + "username": "codyjohnsontx", + "issue": 7697, + "node id": "IC_kwDOB7-mp869HmYc", + "id": 3172886044, + "URL": "https://github.com/hackforla/website/issues/7697", + "skills": "SKILLS ISSUE" + }, + { + "username": "codyyjxn", + "issue": 7219, + "node id": "IC_kwDOB7-mp869HmY5", + "id": 3172886073, + "URL": "https://github.com/hackforla/website/issues/7219", + "skills": "SKILLS ISSUE" + }, + { + "username": "ColinBeuttler", + "issue": 7027, + "node id": "IC_kwDOB7-mp869HmX1", + "id": 3172886005, + "URL": "https://github.com/hackforla/website/issues/7027", + "skills": "SKILLS ISSUE" + }, + { + "username": "colin-macrae", + "issue": 5782, + "node id": "IC_kwDOB7-mp869HmYI", + "id": 3172886024, + "URL": "https://github.com/hackforla/website/issues/5782", + "skills": "SKILLS ISSUE" + }, + { + "username": "connortessaro", + "issue": 5351, + "node id": "IC_kwDOB7-mp869HmX6", + "id": 3172886010, + "URL": "https://github.com/hackforla/website/issues/5351", + "skills": "SKILLS ISSUE" + }, + { + "username": "ControlAltTea", + "issue": 3829, + "node id": "IC_kwDOB7-mp869HmYD", + "id": 3172886019, + "URL": "https://github.com/hackforla/website/issues/3829", + "skills": "SKILLS ISSUE" + }, + { + "username": "crachal", + "issue": 4315, + "node id": "IC_kwDOB7-mp869HmYJ", + "id": 3172886025, + "URL": "https://github.com/hackforla/website/issues/4315", + "skills": "SKILLS ISSUE" + }, + { + "username": "CreslinDev", + "issue": 7519, + "node id": "IC_kwDOB7-mp869HmX7", + "id": 3172886011, + "URL": "https://github.com/hackforla/website/issues/7519", + "skills": "SKILLS ISSUE" + }, + { + "username": "cristinadz", + "issue": 4325, + "node id": "IC_kwDOB7-mp869HmX-", + "id": 3172886014, + "URL": "https://github.com/hackforla/website/issues/4325", + "skills": "SKILLS ISSUE" + }, + { + "username": "Crocodile-Lyle", + "issue": 7967, + "node id": "IC_kwDOB7-mp869HmX9", + "id": 3172886013, + "URL": "https://github.com/hackforla/website/issues/7967", + "skills": "SKILLS ISSUE" + }, + { + "username": "c-rose-g", + "issue": 6945, + "node id": "IC_kwDOB7-mp869FuWx", + "id": 3172394417, + "URL": "https://github.com/hackforla/website/issues/6945", + "skills": "SKILLS ISSUE" + }, + { + "username": "crystallyyy", + "issue": 5357, + "node id": "IC_kwDOB7-mp869HmYN", + "id": 3172886029, + "URL": "https://github.com/hackforla/website/issues/5357", + "skills": "SKILLS ISSUE" + }, + { + "username": "crystalogy", + "issue": 6954, + "node id": "IC_kwDOB7-mp869HmYf", + "id": 3172886047, + "URL": "https://github.com/hackforla/website/issues/6954", + "skills": "SKILLS ISSUE" + }, + { + "username": "curbeammonae", + "issue": 6881, + "node id": "IC_kwDOB7-mp869HmYW", + "id": 3172886038, + "URL": "https://github.com/hackforla/website/issues/6881", + "skills": "SKILLS ISSUE" + }, + { + "username": "curtis-chung", + "issue": 4310, + "node id": "IC_kwDOB7-mp869HmY7", + "id": 3172886075, + "URL": "https://github.com/hackforla/website/issues/4310", + "skills": "SKILLS ISSUE" + }, + { + "username": "cwvivianlin", + "issue": 2951, + "node id": "IC_kwDOB7-mp869HmYA", + "id": 3172886016, + "URL": "https://github.com/hackforla/website/issues/2951", + "skills": "SKILLS ISSUE" + }, + { + "username": "Daanesh", + "issue": 8269, + "node id": "IC_kwDOB7-mp86_ptHd", + "id": 3215380957, + "URL": "https://github.com/hackforla/website/issues/8269", + "skills": "SKILLS ISSUE" + }, + { + "username": "DABSOLUTERRITORY", + "issue": 6425, + "node id": "IC_kwDOB7-mp869HmYQ", + "id": 3172886032, + "URL": "https://github.com/hackforla/website/issues/6425", + "skills": "SKILLS ISSUE" + }, + { + "username": "dakahn93", + "issue": 4626, + "node id": "IC_kwDOB7-mp869HmX_", + "id": 3172886015, + "URL": "https://github.com/hackforla/website/issues/4626", + "skills": "SKILLS ISSUE" + }, + { + "username": "DakuwoN", + "issue": 7593, + "node id": "IC_kwDOB7-mp869HmYr", + "id": 3172886059, + "URL": "https://github.com/hackforla/website/issues/7593", + "skills": "SKILLS ISSUE" + }, + { + "username": "danajeon", + "issue": 6526, + "node id": "IC_kwDOB7-mp869HmYo", + "id": 3172886056, + "URL": "https://github.com/hackforla/website/issues/6526", + "skills": "SKILLS ISSUE" + }, + { + "username": "danielmshawn", + "issue": 5211, + "node id": "IC_kwDOB7-mp869HmYH", + "id": 3172886023, + "URL": "https://github.com/hackforla/website/issues/5211", + "skills": "SKILLS ISSUE" + }, + { + "username": "dantor09", + "issue": 5727, + "node id": "IC_kwDOB7-mp869HmYF", + "id": 3172886021, + "URL": "https://github.com/hackforla/website/issues/5727", + "skills": "SKILLS ISSUE" + }, + { + "username": "danvgar", + "issue": 6032, + "node id": "IC_kwDOB7-mp869HmYg", + "id": 3172886048, + "URL": "https://github.com/hackforla/website/issues/6032", + "skills": "SKILLS ISSUE" + }, + { + "username": "daras-cu", + "issue": 6948, + "node id": "IC_kwDOB7-mp869HmZB", + "id": 3172886081, + "URL": "https://github.com/hackforla/website/issues/6948", + "skills": "SKILLS ISSUE" + }, + { + "username": "Dartis4", + "issue": 6597, + "node id": "IC_kwDOB7-mp869HmYh", + "id": 3172886049, + "URL": "https://github.com/hackforla/website/issues/6597", + "skills": "SKILLS ISSUE" + }, + { + "username": "das-mittel", + "issue": 6040, + "node id": "IC_kwDOB7-mp869HmYd", + "id": 3172886045, + "URL": "https://github.com/hackforla/website/issues/6040", + "skills": "SKILLS ISSUE" + }, + { + "username": "davidwiese", + "issue": 5070, + "node id": "IC_kwDOB7-mp869HmYq", + "id": 3172886058, + "URL": "https://github.com/hackforla/website/issues/5070", + "skills": "SKILLS ISSUE" + }, + { + "username": "dcotelessa", + "issue": 6879, + "node id": "IC_kwDOB7-mp869HmYu", + "id": 3172886062, + "URL": "https://github.com/hackforla/website/issues/6879", + "skills": "SKILLS ISSUE" + }, + { + "username": "DDVVPP", + "issue": 7885, + "node id": "IC_kwDOB7-mp869HmYm", + "id": 3172886054, + "URL": "https://github.com/hackforla/website/issues/7885", + "skills": "SKILLS ISSUE" + }, + { + "username": "deepak-getpu", + "issue": 6727, + "node id": "IC_kwDOB7-mp869HmYk", + "id": 3172886052, + "URL": "https://github.com/hackforla/website/issues/6727", + "skills": "SKILLS ISSUE" + }, + { + "username": "del9ra", + "issue": 6716, + "node id": "IC_kwDOB7-mp869HmYx", + "id": 3172886065, + "URL": "https://github.com/hackforla/website/issues/6716", + "skills": "SKILLS ISSUE" + }, + { + "username": "delaradaryaei", + "issue": 6600, + "node id": "IC_kwDOB7-mp869HmYX", + "id": 3172886039, + "URL": "https://github.com/hackforla/website/issues/6600", + "skills": "SKILLS ISSUE" + }, + { + "username": "DeniseLewis1", + "issue": 6525, + "node id": "IC_kwDOB7-mp869HmYs", + "id": 3172886060, + "URL": "https://github.com/hackforla/website/issues/6525", + "skills": "SKILLS ISSUE" + }, + { + "username": "DeviantSchemist", + "issue": 4987, + "node id": "IC_kwDOB7-mp869HmYt", + "id": 3172886061, + "URL": "https://github.com/hackforla/website/issues/4987", + "skills": "SKILLS ISSUE" + }, + { + "username": "DevRishiJain", + "issue": 4627, + "node id": "IC_kwDOB7-mp869HmY6", + "id": 3172886074, + "URL": "https://github.com/hackforla/website/issues/4627", + "skills": "SKILLS ISSUE" + }, + { + "username": "devxed43", + "issue": 8295, + "node id": "IC_kwDOB7-mp87BGh9q", + "id": "", + "URL": "https://github.com/hackforla/website/issues/8295", + "skills": "SKILLS ISSUE" + }, + { + "username": "DexinJ", + "issue": 7020, + "node id": "IC_kwDOB7-mp869HmYL", + "id": 3172886027, + "URL": "https://github.com/hackforla/website/issues/7020", + "skills": "SKILLS ISSUE" + }, + { + "username": "dheerajkoppu", + "issue": 5207, + "node id": "IC_kwDOB7-mp869HmYY", + "id": 3172886040, + "URL": "https://github.com/hackforla/website/issues/5207", + "skills": "SKILLS ISSUE" + }, + { + "username": "dimiprousalis", + "issue": 5867, + "node id": "IC_kwDOB7-mp869HmYe", + "id": 3172886046, + "URL": "https://github.com/hackforla/website/issues/5867", + "skills": "SKILLS ISSUE" + }, + { + "username": "dineshsk98", + "issue": 5536, + "node id": "IC_kwDOB7-mp869HmYa", + "id": 3172886042, + "URL": "https://github.com/hackforla/website/issues/5536", + "skills": "SKILLS ISSUE" + }, + { + "username": "dionw412", + "issue": 2917, + "node id": "IC_kwDOB7-mp869HmYP", + "id": 3172886031, + "URL": "https://github.com/hackforla/website/issues/2917", + "skills": "SKILLS ISSUE" + }, + { + "username": "djbradleyii", + "issue": 5875, + "node id": "IC_kwDOB7-mp869HmYl", + "id": 3172886053, + "URL": "https://github.com/hackforla/website/issues/5875", + "skills": "SKILLS ISSUE" + }, + { + "username": "DmitriiTsy", + "issue": 3606, + "node id": "IC_kwDOB7-mp869HmYp", + "id": 3172886057, + "URL": "https://github.com/hackforla/website/issues/3606", + "skills": "SKILLS ISSUE" + }, + { + "username": "dmuoio", + "issue": 5221, + "node id": "IC_kwDOB7-mp869HmY1", + "id": 3172886069, + "URL": "https://github.com/hackforla/website/issues/5221", + "skills": "SKILLS ISSUE" + }, + { + "username": "DomenicScozz", + "issue": 5218, + "node id": "IC_kwDOB7-mp869HmYw", + "id": 3172886064, + "URL": "https://github.com/hackforla/website/issues/5218", + "skills": "SKILLS ISSUE" + }, + { + "username": "DonaldBrower", + "issue": 3188, + "node id": "IC_kwDOB7-mp869HmY2", + "id": 3172886070, + "URL": "https://github.com/hackforla/website/issues/3188", + "skills": "SKILLS ISSUE" + }, + { + "username": "DorianDeptuch", + "issue": 5092, + "node id": "IC_kwDOB7-mp869HmY8", + "id": 3172886076, + "URL": "https://github.com/hackforla/website/issues/5092", + "skills": "SKILLS ISSUE" + }, + { + "username": "d-perez-8", + "issue": 3388, + "node id": "IC_kwDOB7-mp869HmYy", + "id": 3172886066, + "URL": "https://github.com/hackforla/website/issues/3388", + "skills": "SKILLS ISSUE" + }, + { + "username": "Dprosser4", + "issue": 4711, + "node id": "IC_kwDOB7-mp869HmYz", + "id": 3172886067, + "URL": "https://github.com/hackforla/website/issues/4711", + "skills": "SKILLS ISSUE" + }, + { + "username": "DrAcula27", + "issue": 6598, + "node id": "IC_kwDOB7-mp869HmZA", + "id": 3172886080, + "URL": "https://github.com/hackforla/website/issues/6598", + "skills": "SKILLS ISSUE" + }, + { + "username": "drakenguyen4000", + "issue": 4174, + "node id": "IC_kwDOB7-mp869HmY9", + "id": 3172886077, + "URL": "https://github.com/hackforla/website/issues/4174", + "skills": "SKILLS ISSUE" + }, + { + "username": "duojet2ez", + "issue": 6037, + "node id": "IC_kwDOB7-mp869HmYj", + "id": 3172886051, + "URL": "https://github.com/hackforla/website/issues/6037", + "skills": "SKILLS ISSUE" + }, + { + "username": "dustinowen", + "issue": 5724, + "node id": "IC_kwDOB7-mp869HmY0", + "id": 3172886068, + "URL": "https://github.com/hackforla/website/issues/5724", + "skills": "SKILLS ISSUE" + }, + { + "username": "dvernon5", + "issue": 7745, + "node id": "IC_kwDOB7-mp869HmY_", + "id": 3172886079, + "URL": "https://github.com/hackforla/website/issues/7745", + "skills": "SKILLS ISSUE" + }, + { + "username": "eburdekin", + "issue": 6331, + "node id": "IC_kwDOB7-mp869HmYn", + "id": 3172886055, + "URL": "https://github.com/hackforla/website/issues/6331", + "skills": "SKILLS ISSUE" + }, + { + "username": "EdASalazar", + "issue": 4336, + "node id": "IC_kwDOB7-mp869HmYv", + "id": 3172886063, + "URL": "https://github.com/hackforla/website/issues/4336", + "skills": "SKILLS ISSUE" + }, + { + "username": "Eddysunday012", + "issue": 7836, + "node id": "IC_kwDOB7-mp869HrQS", + "id": 3172906002, + "URL": "https://github.com/hackforla/website/issues/7836", + "skills": "SKILLS ISSUE" + }, + { + "username": "edwarddim", + "issue": 8137, + "node id": "IC_kwDOB7-mp869HrQA", + "id": 3172905984, + "URL": "https://github.com/hackforla/website/issues/8137", + "skills": "SKILLS ISSUE" + }, + { + "username": "efranzener", + "issue": 5226, + "node id": "IC_kwDOB7-mp869HrQK", + "id": 3172905994, + "URL": "https://github.com/hackforla/website/issues/5226", + "skills": "SKILLS ISSUE" + }, + { + "username": "elisetvy", + "issue": 6601, + "node id": "IC_kwDOB7-mp869HrQT", + "id": 3172906003, + "URL": "https://github.com/hackforla/website/issues/6601", + "skills": "SKILLS ISSUE" + }, + { + "username": "EllenKellyb", + "issue": 3777, + "node id": "IC_kwDOB7-mp869HrQF", + "id": 3172905989, + "URL": "https://github.com/hackforla/website/issues/3777", + "skills": "SKILLS ISSUE" + }, + { + "username": "elliot-d-kim", + "issue": 6117, + "node id": "IC_kwDOB7-mp869HrQD", + "id": 3172905987, + "URL": "https://github.com/hackforla/website/issues/6117", + "skills": "SKILLS ISSUE" + }, + { + "username": "elseclc", + "issue": 7064, + "node id": "IC_kwDOB7-mp869HrQE", + "id": 3172905988, + "URL": "https://github.com/hackforla/website/issues/7064", + "skills": "SKILLS ISSUE" + }, + { + "username": "elsong86", + "issue": 6942, + "node id": "IC_kwDOB7-mp869HrQV", + "id": 3172906005, + "URL": "https://github.com/hackforla/website/issues/6942", + "skills": "SKILLS ISSUE" + }, + { + "username": "elvisEspinozaN", + "issue": 4064, + "node id": "IC_kwDOB7-mp869HrQB", + "id": 3172905985, + "URL": "https://github.com/hackforla/website/issues/4064", + "skills": "SKILLS ISSUE" + }, + { + "username": "ememercy21", + "issue": 2687, + "node id": "IC_kwDOB7-mp869HrQH", + "id": 3172905991, + "URL": "https://github.com/hackforla/website/issues/2687", + "skills": "SKILLS ISSUE" + }, + { + "username": "EmilyTat", + "issue": 3141, + "node id": "IC_kwDOB7-mp869HrQO", + "id": 3172905998, + "URL": "https://github.com/hackforla/website/issues/3141", + "skills": "SKILLS ISSUE" + }, + { + "username": "EmmaBin", + "issue": 4712, + "node id": "IC_kwDOB7-mp869HrQP", + "id": 3172905999, + "URL": "https://github.com/hackforla/website/issues/4712", + "skills": "SKILLS ISSUE" + }, + { + "username": "engmaggi", + "issue": 2596, + "node id": "IC_kwDOB7-mp869HrQJ", + "id": 3172905993, + "URL": "https://github.com/hackforla/website/issues/2596", + "skills": "SKILLS ISSUE" + }, + { + "username": "eodero", + "issue": 3074, + "node id": "IC_kwDOB7-mp869HrQW", + "id": 3172906006, + "URL": "https://github.com/hackforla/website/issues/3074", + "skills": "SKILLS ISSUE" + }, + { + "username": "ericahagle", + "issue": 6831, + "node id": "IC_kwDOB7-mp869HrP_", + "id": 3172905983, + "URL": "https://github.com/hackforla/website/issues/6831", + "skills": "SKILLS ISSUE" + }, + { + "username": "ericvennemeyer", + "issue": 3048, + "node id": "IC_kwDOB7-mp869HrRC", + "id": 3172906050, + "URL": "https://github.com/hackforla/website/issues/3048", + "skills": "SKILLS ISSUE" + }, + { + "username": "erinpattison", + "issue": 4062, + "node id": "IC_kwDOB7-mp869HrQc", + "id": 3172906012, + "URL": "https://github.com/hackforla/website/issues/4062", + "skills": "SKILLS ISSUE" + }, + { + "username": "erinzz", + "issue": 5206, + "node id": "IC_kwDOB7-mp869HrQx", + "id": 3172906033, + "URL": "https://github.com/hackforla/website/issues/5206", + "skills": "SKILLS ISSUE" + }, + { + "username": "erniep278", + "issue": 3607, + "node id": "IC_kwDOB7-mp869HrQZ", + "id": 3172906009, + "URL": "https://github.com/hackforla/website/issues/3607", + "skills": "SKILLS ISSUE" + }, + { + "username": "esantiano", + "issue": 3603, + "node id": "IC_kwDOB7-mp869HrQi", + "id": 3172906018, + "URL": "https://github.com/hackforla/website/issues/3603", + "skills": "SKILLS ISSUE" + }, + { + "username": "EShahverdian", + "issue": 7969, + "node id": "IC_kwDOB7-mp869HrQL", + "id": 3172905995, + "URL": "https://github.com/hackforla/website/issues/7969", + "skills": "SKILLS ISSUE" + }, + { + "username": "essbee808", + "issue": 3706, + "node id": "IC_kwDOB7-mp869HrQd", + "id": 3172906013, + "URL": "https://github.com/hackforla/website/issues/3706", + "skills": "SKILLS ISSUE" + }, + { + "username": "ethanchen7", + "issue": 3386, + "node id": "IC_kwDOB7-mp869HrQM", + "id": 3172905996, + "URL": "https://github.com/hackforla/website/issues/3386", + "skills": "SKILLS ISSUE" + }, + { + "username": "ethanloh8", + "issue": 7021, + "node id": "IC_kwDOB7-mp869HrQN", + "id": 3172905997, + "URL": "https://github.com/hackforla/website/issues/7021", + "skills": "SKILLS ISSUE" + }, + { + "username": "ethanstrominger", + "issue": 3292, + "node id": "IC_kwDOB7-mp869HrQf", + "id": 3172906015, + "URL": "https://github.com/hackforla/website/issues/3292", + "skills": "SKILLS ISSUE" + }, + { + "username": "eulloa10", + "issue": 4318, + "node id": "IC_kwDOB7-mp869HrQl", + "id": 3172906021, + "URL": "https://github.com/hackforla/website/issues/4318", + "skills": "SKILLS ISSUE" + }, + { + "username": "eunicode", + "issue": 8134, + "node id": "IC_kwDOB7-mp869HrQe", + "id": 3172906014, + "URL": "https://github.com/hackforla/website/issues/8134", + "skills": "SKILLS ISSUE" + }, + { + "username": "evanhesketh", + "issue": 5069, + "node id": "IC_kwDOB7-mp869HrQz", + "id": 3172906035, + "URL": "https://github.com/hackforla/website/issues/5069", + "skills": "SKILLS ISSUE" + }, + { + "username": "evan-ishibashi", + "issue": 6247, + "node id": "IC_kwDOB7-mp869HrQY", + "id": 3172906008, + "URL": "https://github.com/hackforla/website/issues/6247", + "skills": "SKILLS ISSUE" + }, + { + "username": "eyaaoo", + "issue": 6428, + "node id": "IC_kwDOB7-mp869HrQR", + "id": 3172906001, + "URL": "https://github.com/hackforla/website/issues/6428", + "skills": "SKILLS ISSUE" + }, + { + "username": "ezchung", + "issue": 4609, + "node id": "IC_kwDOB7-mp869HrQQ", + "id": 3172906000, + "URL": "https://github.com/hackforla/website/issues/4609", + "skills": "SKILLS ISSUE" + }, + { + "username": "fahimicodes", + "issue": 5726, + "node id": "IC_kwDOB7-mp869HrQt", + "id": 3172906029, + "URL": "https://github.com/hackforla/website/issues/5726", + "skills": "SKILLS ISSUE" + }, + { + "username": "FamousHero", + "issue": 7327, + "node id": "IC_kwDOB7-mp869HrQ7", + "id": 3172906043, + "URL": "https://github.com/hackforla/website/issues/7327", + "skills": "SKILLS ISSUE" + }, + { + "username": "FatCatLikesBeer", + "issue": 8094, + "node id": "IC_kwDOB7-mp869HrQw", + "id": 3172906032, + "URL": "https://github.com/hackforla/website/issues/8094", + "skills": "SKILLS ISSUE" + }, + { + "username": "fernandoqueue", + "issue": 2985, + "node id": "IC_kwDOB7-mp869HrQn", + "id": 3172906023, + "URL": "https://github.com/hackforla/website/issues/2985", + "skills": "SKILLS ISSUE" + }, + { + "username": "flashcabaja64", + "issue": 5077, + "node id": "IC_kwDOB7-mp869HrQU", + "id": 3172906004, + "URL": "https://github.com/hackforla/website/issues/5077", + "skills": "SKILLS ISSUE" + }, + { + "username": "floydferrer", + "issue": 7517, + "node id": "IC_kwDOB7-mp869HrQ1", + "id": 3172906037, + "URL": "https://github.com/hackforla/website/issues/7517", + "skills": "SKILLS ISSUE" + }, + { + "username": "frankstepanski", + "issue": 2660, + "node id": "IC_kwDOB7-mp869HrQp", + "id": 3172906025, + "URL": "https://github.com/hackforla/website/issues/2660", + "skills": "SKILLS ISSUE" + }, + { + "username": "freaky4wrld", + "issue": 5614, + "node id": "IC_kwDOB7-mp869HrRR", + "id": 3172906065, + "URL": "https://github.com/hackforla/website/issues/5614", + "skills": "SKILLS ISSUE" + }, + { + "username": "ftblmagician", + "issue": 3918, + "node id": "IC_kwDOB7-mp869HrQo", + "id": 3172906024, + "URL": "https://github.com/hackforla/website/issues/3918", + "skills": "SKILLS ISSUE" + }, + { + "username": "fusionxx23", + "issue": 8066, + "node id": "IC_kwDOB7-mp869HrQb", + "id": 3172906011, + "URL": "https://github.com/hackforla/website/issues/8066", + "skills": "SKILLS ISSUE" + }, + { + "username": "gabbyjimenez", + "issue": 8273, + "node id": "IC_kwDOB7-mp86_ptvb", + "id": 3215383515, + "URL": "https://github.com/hackforla/website/issues/8273", + "skills": "SKILLS ISSUE" + }, + { + "username": "Garcia1416", + "issue": 2638, + "node id": "IC_kwDOB7-mp869HrQs", + "id": 3172906028, + "URL": "https://github.com/hackforla/website/issues/2638", + "skills": "SKILLS ISSUE" + }, + { + "username": "gardenqu", + "issue": 3052, + "node id": "IC_kwDOB7-mp869HrQk", + "id": 3172906020, + "URL": "https://github.com/hackforla/website/issues/3052", + "skills": "SKILLS ISSUE" + }, + { + "username": "garrettallen0", + "issue": 4061, + "node id": "IC_kwDOB7-mp869HrQX", + "id": 3172906007, + "URL": "https://github.com/hackforla/website/issues/4061", + "skills": "SKILLS ISSUE" + }, + { + "username": "gaylem", + "issue": 6246, + "node id": "IC_kwDOB7-mp869HrRJ", + "id": 3172906057, + "URL": "https://github.com/hackforla/website/issues/6246", + "skills": "SKILLS ISSUE" + }, + { + "username": "gdkoo", + "issue": 6034, + "node id": "IC_kwDOB7-mp869HrQu", + "id": 3172906030, + "URL": "https://github.com/hackforla/website/issues/6034", + "skills": "SKILLS ISSUE" + }, + { + "username": "ge-andrew", + "issue": 5360, + "node id": "IC_kwDOB7-mp869HrQa", + "id": 3172906010, + "URL": "https://github.com/hackforla/website/issues/5360", + "skills": "SKILLS ISSUE" + }, + { + "username": "geedtd", + "issue": 3123, + "node id": "IC_kwDOB7-mp869HrQj", + "id": 3172906019, + "URL": "https://github.com/hackforla/website/issues/3123", + "skills": "SKILLS ISSUE" + }, + { + "username": "Georgema20", + "issue": 2559, + "node id": "IC_kwDOB7-mp869HrRS", + "id": 3172906066, + "URL": "https://github.com/hackforla/website/issues/2559", + "skills": "SKILLS ISSUE" + }, + { + "username": "GinaCastromonte", + "issue": 6340, + "node id": "IC_kwDOB7-mp869HrQq", + "id": 3172906026, + "URL": "https://github.com/hackforla/website/issues/6340", + "skills": "SKILLS ISSUE" + }, + { + "username": "GioMogi", + "issue": 6343, + "node id": "IC_kwDOB7-mp869HrQ9", + "id": 3172906045, + "URL": "https://github.com/hackforla/website/issues/6343", + "skills": "SKILLS ISSUE" + }, + { + "username": "giroz", + "issue": 3459, + "node id": "IC_kwDOB7-mp869HrQ6", + "id": 3172906042, + "URL": "https://github.com/hackforla/website/issues/3459", + "skills": "SKILLS ISSUE" + }, + { + "username": "githelsui", + "issue": 7968, + "node id": "IC_kwDOB7-mp869HrQ2", + "id": 3172906038, + "URL": "https://github.com/hackforla/website/issues/7968", + "skills": "SKILLS ISSUE" + }, + { + "username": "GitPeebles", + "issue": 3786, + "node id": "IC_kwDOB7-mp869HrQm", + "id": 3172906022, + "URL": "https://github.com/hackforla/website/issues/3786", + "skills": "SKILLS ISSUE" + }, + { + "username": "gmgonzal", + "issue": 7743, + "node id": "IC_kwDOB7-mp869HrQ-", + "id": 3172906046, + "URL": "https://github.com/hackforla/website/issues/7743", + "skills": "SKILLS ISSUE" + }, + { + "username": "gold-o", + "issue": 3069, + "node id": "IC_kwDOB7-mp869HrQ_", + "id": 3172906047, + "URL": "https://github.com/hackforla/website/issues/3069", + "skills": "SKILLS ISSUE" + }, + { + "username": "graycodesnu", + "issue": 4312, + "node id": "IC_kwDOB7-mp869HrQr", + "id": 3172906027, + "URL": "https://github.com/hackforla/website/issues/4312", + "skills": "SKILLS ISSUE" + }, + { + "username": "greg-nice", + "issue": 3050, + "node id": "IC_kwDOB7-mp869HrQy", + "id": 3172906034, + "URL": "https://github.com/hackforla/website/issues/3050", + "skills": "SKILLS ISSUE" + }, + { + "username": "greylaw89", + "issue": 2837, + "node id": "IC_kwDOB7-mp869HrQ0", + "id": 3172906036, + "URL": "https://github.com/hackforla/website/issues/2837", + "skills": "SKILLS ISSUE" + }, + { + "username": "GRISONRF", + "issue": 3544, + "node id": "IC_kwDOB7-mp869HrRG", + "id": 3172906054, + "URL": "https://github.com/hackforla/website/issues/3544", + "skills": "SKILLS ISSUE" + }, + { + "username": "GRK1998", + "issue": 5000, + "node id": "IC_kwDOB7-mp869HrRN", + "id": 3172906061, + "URL": "https://github.com/hackforla/website/issues/5000", + "skills": "SKILLS ISSUE" + }, + { + "username": "gsh3729", + "issue": 6949, + "node id": "IC_kwDOB7-mp869HrRA", + "id": 3172906048, + "URL": "https://github.com/hackforla/website/issues/6949", + "skills": "SKILLS ISSUE" + }, + { + "username": "gstemmann", + "issue": 3604, + "node id": "IC_kwDOB7-mp869HrRL", + "id": 3172906059, + "URL": "https://github.com/hackforla/website/issues/3604", + "skills": "SKILLS ISSUE" + }, + { + "username": "h3nry-m", + "issue": 3612, + "node id": "IC_kwDOB7-mp869HrRM", + "id": 3172906060, + "URL": "https://github.com/hackforla/website/issues/3612", + "skills": "SKILLS ISSUE" + }, + { + "username": "ha-bach", + "issue": 5086, + "node id": "IC_kwDOB7-mp869HrRD", + "id": 3172906051, + "URL": "https://github.com/hackforla/website/issues/5086", + "skills": "SKILLS ISSUE" + }, + { + "username": "hang-justin", + "issue": 4161, + "node id": "IC_kwDOB7-mp869HrRE", + "id": 3172906052, + "URL": "https://github.com/hackforla/website/issues/4161", + "skills": "SKILLS ISSUE" + }, + { + "username": "harshitasao", + "issue": 2840, + "node id": "IC_kwDOB7-mp869HrRK", + "id": 3172906058, + "URL": "https://github.com/hackforla/website/issues/2840", + "skills": "SKILLS ISSUE" + }, + { + "username": "hdkassamali", + "issue": 7888, + "node id": "IC_kwDOB7-mp869HrQv", + "id": 3172906031, + "URL": "https://github.com/hackforla/website/issues/7888", + "skills": "SKILLS ISSUE" + }, + { + "username": "heejung-hong", + "issue": 5868, + "node id": "IC_kwDOB7-mp869HrRO", + "id": 3172906062, + "URL": "https://github.com/hackforla/website/issues/5868", + "skills": "SKILLS ISSUE" + }, + { + "username": "hellorachelschwartz", + "issue": 3252, + "node id": "IC_kwDOB7-mp869HrQ4", + "id": 3172906040, + "URL": "https://github.com/hackforla/website/issues/3252", + "skills": "SKILLS ISSUE" + }, + { + "username": "hkhaung", + "issue": 7202, + "node id": "IC_kwDOB7-mp869HrRB", + "id": 3172906049, + "URL": "https://github.com/hackforla/website/issues/7202", + "skills": "SKILLS ISSUE" + }, + { + "username": "hoanhua14", + "issue": 7896, + "node id": "IC_kwDOB7-mp869HrRF", + "id": 3172906053, + "URL": "https://github.com/hackforla/website/issues/7896", + "skills": "SKILLS ISSUE" + }, + { + "username": "homeroochoa47", + "issue": 5078, + "node id": "IC_kwDOB7-mp869HrQ3", + "id": 3172906039, + "URL": "https://github.com/hackforla/website/issues/5078", + "skills": "SKILLS ISSUE" + }, + { + "username": "howdyjessie", + "issue": 6253, + "node id": "IC_kwDOB7-mp869HrRQ", + "id": 3172906064, + "URL": "https://github.com/hackforla/website/issues/6253", + "skills": "SKILLS ISSUE" + }, + { + "username": "Hsan2022", + "issue": 6532, + "node id": "IC_kwDOB7-mp869HrQ8", + "id": 3172906044, + "URL": "https://github.com/hackforla/website/issues/6532", + "skills": "SKILLS ISSUE" + }, + { + "username": "hussainmudassir", + "issue": 7209, + "node id": "IC_kwDOB7-mp869HrQ5", + "id": 3172906041, + "URL": "https://github.com/hackforla/website/issues/7209", + "skills": "SKILLS ISSUE" + }, + { + "username": "HyMike", + "issue": 8067, + "node id": "IC_kwDOB7-mp869HrRI", + "id": 3172906056, + "URL": "https://github.com/hackforla/website/issues/8067", + "skills": "SKILLS ISSUE" + }, + { + "username": "hziegel", + "issue": 8097, + "node id": "IC_kwDOB7-mp869HrRP", + "id": 3172906063, + "URL": "https://github.com/hackforla/website/issues/8097", + "skills": "SKILLS ISSUE" + }, + { + "username": "iancooperman", + "issue": 6033, + "node id": "IC_kwDOB7-mp869Hrne", + "id": 3172907486, + "URL": "https://github.com/hackforla/website/issues/6033", + "skills": "SKILLS ISSUE" + }, + { + "username": "ihop-56", + "issue": 7212, + "node id": "IC_kwDOB7-mp869Hrno", + "id": 3172907496, + "URL": "https://github.com/hackforla/website/issues/7212", + "skills": "SKILLS ISSUE" + }, + { + "username": "imheeok", + "issue": 7891, + "node id": "IC_kwDOB7-mp869HrnR", + "id": 3172907473, + "URL": "https://github.com/hackforla/website/issues/7891", + "skills": "SKILLS ISSUE" + }, + { + "username": "imthiazh", + "issue": 7574, + "node id": "IC_kwDOB7-mp869Hrnf", + "id": 3172907487, + "URL": "https://github.com/hackforla/website/issues/7574", + "skills": "SKILLS ISSUE" + }, + { + "username": "imvan2", + "issue": 4618, + "node id": "IC_kwDOB7-mp869HrnT", + "id": 3172907475, + "URL": "https://github.com/hackforla/website/issues/4618", + "skills": "SKILLS ISSUE" + }, + { + "username": "innith", + "issue": 5363, + "node id": "IC_kwDOB7-mp869HrnZ", + "id": 3172907481, + "URL": "https://github.com/hackforla/website/issues/5363", + "skills": "SKILLS ISSUE" + }, + { + "username": "ino-iosdev", + "issue": 6885, + "node id": "IC_kwDOB7-mp869Hrng", + "id": 3172907488, + "URL": "https://github.com/hackforla/website/issues/6885", + "skills": "SKILLS ISSUE" + }, + { + "username": "Insaneowl1993", + "issue": 6607, + "node id": "IC_kwDOB7-mp869HrnQ", + "id": 3172907472, + "URL": "https://github.com/hackforla/website/issues/6607", + "skills": "SKILLS ISSUE" + }, + { + "username": "irais-valenzuela", + "issue": 5779, + "node id": "IC_kwDOB7-mp869Hrn7", + "id": 3172907515, + "URL": "https://github.com/hackforla/website/issues/5779", + "skills": "SKILLS ISSUE" + }, + { + "username": "iris-jeong", + "issue": 5862, + "node id": "IC_kwDOB7-mp869HrnP", + "id": 3172907471, + "URL": "https://github.com/hackforla/website/issues/5862", + "skills": "SKILLS ISSUE" + }, + { + "username": "Islaster", + "issue": 7031, + "node id": "IC_kwDOB7-mp869Hrnn", + "id": 3172907495, + "URL": "https://github.com/hackforla/website/issues/7031", + "skills": "SKILLS ISSUE" + }, + { + "username": "Itav8", + "issue": 6545, + "node id": "IC_kwDOB7-mp869Hrnm", + "id": 3172907494, + "URL": "https://github.com/hackforla/website/issues/6545", + "skills": "SKILLS ISSUE" + }, + { + "username": "itazurakozo", + "issue": 7330, + "node id": "IC_kwDOB7-mp869Hrnh", + "id": 3172907489, + "URL": "https://github.com/hackforla/website/issues/7330", + "skills": "SKILLS ISSUE" + }, + { + "username": "iuddin", + "issue": 4320, + "node id": "IC_kwDOB7-mp869HrnV", + "id": 3172907477, + "URL": "https://github.com/hackforla/website/issues/4320", + "skills": "SKILLS ISSUE" + }, + { + "username": "ivan20203", + "issue": 4974, + "node id": "IC_kwDOB7-mp869HroA", + "id": 3172907520, + "URL": "https://github.com/hackforla/website/issues/4974", + "skills": "SKILLS ISSUE" + }, + { + "username": "izma-mujeeb", + "issue": 7030, + "node id": "IC_kwDOB7-mp869Hrn3", + "id": 3172907511, + "URL": "https://github.com/hackforla/website/issues/7030", + "skills": "SKILLS ISSUE" + }, + { + "username": "jaasonw", + "issue": 5635, + "node id": "IC_kwDOB7-mp869Hrns", + "id": 3172907500, + "URL": "https://github.com/hackforla/website/issues/5635", + "skills": "SKILLS ISSUE" + }, + { + "username": "JackCasica", + "issue": 5865, + "node id": "IC_kwDOB7-mp869HroJ", + "id": 3172907529, + "URL": "https://github.com/hackforla/website/issues/5865", + "skills": "SKILLS ISSUE" + }, + { + "username": "JackCSweeney", + "issue": 7022, + "node id": "IC_kwDOB7-mp869Hrnd", + "id": 3172907485, + "URL": "https://github.com/hackforla/website/issues/7022", + "skills": "SKILLS ISSUE" + }, + { + "username": "JackieRiley1", + "issue": 2500, + "node id": "IC_kwDOB7-mp869Hrn5", + "id": 3172907513, + "URL": "https://github.com/hackforla/website/issues/2500", + "skills": "SKILLS ISSUE" + }, + { + "username": "jackyuan1", + "issue": 5720, + "node id": "IC_kwDOB7-mp869Hrni", + "id": 3172907490, + "URL": "https://github.com/hackforla/website/issues/5720", + "skills": "SKILLS ISSUE" + }, + { + "username": "jacquesarzu2014", + "issue": 7035, + "node id": "IC_kwDOB7-mp869HrnS", + "id": 3172907474, + "URL": "https://github.com/hackforla/website/issues/7035", + "skills": "SKILLS ISSUE" + }, + { + "username": "jakejjoyner", + "issue": 7693, + "node id": "IC_kwDOB7-mp869Hrnc", + "id": 3172907484, + "URL": "https://github.com/hackforla/website/issues/7693", + "skills": "SKILLS ISSUE" + }, + { + "username": "james-aguirre", + "issue": 5774, + "node id": "IC_kwDOB7-mp869HrnY", + "id": 3172907480, + "URL": "https://github.com/hackforla/website/issues/5774", + "skills": "SKILLS ISSUE" + }, + { + "username": "jamhpark", + "issue": 8188, + "node id": "IC_kwDOB7-mp869HrnU", + "id": 3172907476, + "URL": "https://github.com/hackforla/website/issues/8188", + "skills": "SKILLS ISSUE" + }, + { + "username": "janice87", + "issue": 4173, + "node id": "IC_kwDOB7-mp869Hrn4", + "id": 3172907512, + "URL": "https://github.com/hackforla/website/issues/4173", + "skills": "SKILLS ISSUE" + }, + { + "username": "JanineSooThow", + "issue": 4988, + "node id": "IC_kwDOB7-mp869Hrn2", + "id": 3172907510, + "URL": "https://github.com/hackforla/website/issues/4988", + "skills": "SKILLS ISSUE" + }, + { + "username": "Jaretzbalba", + "issue": 2838, + "node id": "IC_kwDOB7-mp869Hrn-", + "id": 3172907518, + "URL": "https://github.com/hackforla/website/issues/2838", + "skills": "SKILLS ISSUE" + }, + { + "username": "jasonlinlinlin", + "issue": 5869, + "node id": "IC_kwDOB7-mp869Hrnb", + "id": 3172907483, + "URL": "https://github.com/hackforla/website/issues/5869", + "skills": "SKILLS ISSUE" + }, + { + "username": "JasonY188", + "issue": 2750, + "node id": "IC_kwDOB7-mp869Hrnk", + "id": 3172907492, + "URL": "https://github.com/hackforla/website/issues/2750", + "skills": "SKILLS ISSUE" + }, + { + "username": "javierb256", + "issue": 8135, + "node id": "IC_kwDOB7-mp869HrnX", + "id": 3172907479, + "URL": "https://github.com/hackforla/website/issues/8135", + "skills": "SKILLS ISSUE" + }, + { + "username": "JayBarbanel", + "issue": 3070, + "node id": "IC_kwDOB7-mp869HroE", + "id": 3172907524, + "URL": "https://github.com/hackforla/website/issues/3070", + "skills": "SKILLS ISSUE" + }, + { + "username": "Jaycelab", + "issue": 7890, + "node id": "IC_kwDOB7-mp869Hrna", + "id": 3172907482, + "URL": "https://github.com/hackforla/website/issues/7890", + "skills": "SKILLS ISSUE" + }, + { + "username": "jazxbx", + "issue": 6832, + "node id": "IC_kwDOB7-mp869Hrny", + "id": 3172907506, + "URL": "https://github.com/hackforla/website/issues/6832", + "skills": "SKILLS ISSUE" + }, + { + "username": "jbialkin98", + "issue": 3387, + "node id": "IC_kwDOB7-mp869Hrnl", + "id": 3172907493, + "URL": "https://github.com/hackforla/website/issues/3387", + "skills": "SKILLS ISSUE" + }, + { + "username": "JCameren", + "issue": 5310, + "node id": "IC_kwDOB7-mp869Hrnq", + "id": 3172907498, + "URL": "https://github.com/hackforla/website/issues/5310", + "skills": "SKILLS ISSUE" + }, + { + "username": "jch1013", + "issue": 3796, + "node id": "IC_kwDOB7-mp869HroG", + "id": 3172907526, + "URL": "https://github.com/hackforla/website/issues/3796", + "skills": "SKILLS ISSUE" + }, + { + "username": "jchue", + "issue": 6715, + "node id": "IC_kwDOB7-mp869Hrnp", + "id": 3172907497, + "URL": "https://github.com/hackforla/website/issues/6715", + "skills": "SKILLS ISSUE" + }, + { + "username": "jdingeman", + "issue": 3365, + "node id": "IC_kwDOB7-mp869HxR8", + "id": 3172930684, + "URL": "https://github.com/hackforla/website/issues/3365", + "skills": "SKILLS ISSUE" + }, + { + "username": "jefflueck", + "issue": 4090, + "node id": "IC_kwDOB7-mp869Hrod", + "id": 3172907549, + "URL": "https://github.com/hackforla/website/issues/4090", + "skills": "SKILLS ISSUE" + }, + { + "username": "Jeffreyp1", + "issue": 8130, + "node id": "IC_kwDOB7-mp869Hrnv", + "id": 3172907503, + "URL": "https://github.com/hackforla/website/issues/8130", + "skills": "SKILLS ISSUE" + }, + { + "username": "jenjenkayi", + "issue": 6350, + "node id": "IC_kwDOB7-mp869Hrnu", + "id": 3172907502, + "URL": "https://github.com/hackforla/website/issues/6350", + "skills": "SKILLS ISSUE" + }, + { + "username": "jenniesf", + "issue": 4331, + "node id": "IC_kwDOB7-mp869Hrnj", + "id": 3172907491, + "URL": "https://github.com/hackforla/website/issues/4331", + "skills": "SKILLS ISSUE" + }, + { + "username": "jennifertieu", + "issue": 4966, + "node id": "IC_kwDOB7-mp869Hrn9", + "id": 3172907517, + "URL": "https://github.com/hackforla/website/issues/4966", + "skills": "SKILLS ISSUE" + }, + { + "username": "jennisung", + "issue": 6877, + "node id": "IC_kwDOB7-mp869Hrnt", + "id": 3172907501, + "URL": "https://github.com/hackforla/website/issues/6877", + "skills": "SKILLS ISSUE" + }, + { + "username": "jenny-alexander", + "issue": 4636, + "node id": "IC_kwDOB7-mp869HroK", + "id": 3172907530, + "URL": "https://github.com/hackforla/website/issues/4636", + "skills": "SKILLS ISSUE" + }, + { + "username": "jeristella", + "issue": 3908, + "node id": "IC_kwDOB7-mp869Hrn6", + "id": 3172907514, + "URL": "https://github.com/hackforla/website/issues/3908", + "skills": "SKILLS ISSUE" + }, + { + "username": "jessdvdv", + "issue": 3910, + "node id": "IC_kwDOB7-mp869Hrnr", + "id": 3172907499, + "URL": "https://github.com/hackforla/website/issues/3910", + "skills": "SKILLS ISSUE" + }, + { + "username": "JessicaLucindaCheng", + "issue": 2520, + "node id": "IC_kwDOB7-mp869HyRM", + "id": 3172934334, + "URL": "https://github.com/hackforla/website/issues/2520", + "skills": "SKILLS ISSUE" + }, + { + "username": "jesusmendoza1940", + "issue": 7923, + "node id": "IC_kwDOB7-mp869HroB", + "id": 3172907521, + "URL": "https://github.com/hackforla/website/issues/7923", + "skills": "SKILLS ISSUE" + }, + { + "username": "Jfong1218", + "issue": 5222, + "node id": "IC_kwDOB7-mp869HroC", + "id": 3172907522, + "URL": "https://github.com/hackforla/website/issues/5222", + "skills": "SKILLS ISSUE" + }, + { + "username": "jhong94", + "issue": 7208, + "node id": "IC_kwDOB7-mp869Hrn_", + "id": 3172907519, + "URL": "https://github.com/hackforla/website/issues/7208", + "skills": "SKILLS ISSUE" + }, + { + "username": "JijiTheCreator", + "issue": 3712, + "node id": "IC_kwDOB7-mp869Hrn1", + "id": 3172907509, + "URL": "https://github.com/hackforla/website/issues/3712", + "skills": "SKILLS ISSUE" + }, + { + "username": "JimGeist", + "issue": 2468, + "node id": "IC_kwDOB7-mp869Hroh", + "id": 3172907553, + "URL": "https://github.com/hackforla/website/issues/2468", + "skills": "SKILLS ISSUE" + }, + { + "username": "Jimmy-Vu", + "issue": 4611, + "node id": "IC_kwDOB7-mp869Hrn0", + "id": 3172907508, + "URL": "https://github.com/hackforla/website/issues/4611", + "skills": "SKILLS ISSUE" + }, + { + "username": "jleung7158", + "issue": 5780, + "node id": "IC_kwDOB7-mp869HroR", + "id": 3172907537, + "URL": "https://github.com/hackforla/website/issues/5780", + "skills": "SKILLS ISSUE" + }, + { + "username": "jlevot", + "issue": 6029, + "node id": "IC_kwDOB7-mp869HroQ", + "id": 3172907536, + "URL": "https://github.com/hackforla/website/issues/6029", + "skills": "SKILLS ISSUE" + }, + { + "username": "jlu9d2", + "issue": 4073, + "node id": "IC_kwDOB7-mp869HroH", + "id": 3172907527, + "URL": "https://github.com/hackforla/website/issues/4073", + "skills": "SKILLS ISSUE" + }, + { + "username": "jmarinit", + "issue": 7217, + "node id": "IC_kwDOB7-mp869HroO", + "id": 3172907534, + "URL": "https://github.com/hackforla/website/issues/7217", + "skills": "SKILLS ISSUE" + }, + { + "username": "Jmmcclo2023", + "issue": 4993, + "node id": "IC_kwDOB7-mp869H2gC", + "id": 3172952066, + "URL": "https://github.com/hackforla/website/issues/4993", + "skills": "SKILLS ISSUE" + }, + { + "username": "j-m-rodriguez", + "issue": 7201, + "node id": "IC_kwDOB7-mp869HrnW", + "id": 3172907478, + "URL": "https://github.com/hackforla/website/issues/7201", + "skills": "SKILLS ISSUE" + }, + { + "username": "jnmrles", + "issue": 2496, + "node id": "IC_kwDOB7-mp869HroV", + "id": 3172907541, + "URL": "https://github.com/hackforla/website/issues/2496", + "skills": "SKILLS ISSUE" + }, + { + "username": "jnomad21", + "issue": 4985, + "node id": "IC_kwDOB7-mp869Hrob", + "id": 3172907547, + "URL": "https://github.com/hackforla/website/issues/4985", + "skills": "SKILLS ISSUE" + }, + { + "username": "joelfuelling", + "issue": 5088, + "node id": "IC_kwDOB7-mp869HroI", + "id": 3172907528, + "URL": "https://github.com/hackforla/website/issues/5088", + "skills": "SKILLS ISSUE" + }, + { + "username": "joeytsui1", + "issue": 7624, + "node id": "IC_kwDOB7-mp869HroY", + "id": 3172907544, + "URL": "https://github.com/hackforla/website/issues/7624", + "skills": "SKILLS ISSUE" + }, + { + "username": "johnApale", + "issue": 6036, + "node id": "IC_kwDOB7-mp869Hroe", + "id": 3172907550, + "URL": "https://github.com/hackforla/website/issues/6036", + "skills": "SKILLS ISSUE" + }, + { + "username": "johnBueno31", + "issue": 6250, + "node id": "IC_kwDOB7-mp869HroM", + "id": 3172907532, + "URL": "https://github.com/hackforla/website/issues/6250", + "skills": "SKILLS ISSUE" + }, + { + "username": "JohnJBarrett22", + "issue": 3458, + "node id": "IC_kwDOB7-mp869HroT", + "id": 3172907539, + "URL": "https://github.com/hackforla/website/issues/3458", + "skills": "SKILLS ISSUE" + }, + { + "username": "Johnnie007", + "issue": 2524, + "node id": "IC_kwDOB7-mp869HroS", + "id": 3172907538, + "URL": "https://github.com/hackforla/website/issues/2524", + "skills": "SKILLS ISSUE" + }, + { + "username": "johnppkyaw", + "issue": 6829, + "node id": "IC_kwDOB7-mp869Hrof", + "id": 3172907551, + "URL": "https://github.com/hackforla/website/issues/6829", + "skills": "SKILLS ISSUE" + }, + { + "username": "jojochen25", + "issue": 3820, + "node id": "IC_kwDOB7-mp869H2gA", + "id": 3172952064, + "URL": "https://github.com/hackforla/website/issues/3820", + "skills": "SKILLS ISSUE" + }, + { + "username": "JolleenI", + "issue": 3434, + "node id": "IC_kwDOB7-mp869Hrn8", + "id": 3172907516, + "URL": "https://github.com/hackforla/website/issues/3434", + "skills": "SKILLS ISSUE" + }, + { + "username": "jond34", + "issue": 3608, + "node id": "IC_kwDOB7-mp869Hrnx", + "id": 3172907505, + "URL": "https://github.com/hackforla/website/issues/3608", + "skills": "SKILLS ISSUE" + }, + { + "username": "jonnyoe", + "issue": 6329, + "node id": "IC_kwDOB7-mp869H2gH", + "id": 3172952071, + "URL": "https://github.com/hackforla/website/issues/6329", + "skills": "SKILLS ISSUE" + }, + { + "username": "joooseph2", + "issue": 7225, + "node id": "IC_kwDOB7-mp869HroD", + "id": 3172907523, + "URL": "https://github.com/hackforla/website/issues/7225", + "skills": "SKILLS ISSUE" + }, + { + "username": "joshjyu", + "issue": 8268, + "node id": "IC_kwDOB7-mp86_ps9y", + "id": 3215380338, + "URL": "https://github.com/hackforla/website/issues/8268", + "skills": "SKILLS ISSUE" + }, + { + "username": "JoshuaGirgis", + "issue": 5871, + "node id": "IC_kwDOB7-mp869Hrnz", + "id": 3172907507, + "URL": "https://github.com/hackforla/website/issues/5871", + "skills": "SKILLS ISSUE" + }, + { + "username": "Joyce750526", + "issue": 4326, + "node id": "IC_kwDOB7-mp869H2f_", + "id": 3172952063, + "URL": "https://github.com/hackforla/website/issues/4326", + "skills": "SKILLS ISSUE" + }, + { + "username": "JpadillaCoding", + "issue": 4716, + "node id": "IC_kwDOB7-mp869HroU", + "id": 3172907540, + "URL": "https://github.com/hackforla/website/issues/4716", + "skills": "SKILLS ISSUE" + }, + { + "username": "Jperparas", + "issue": 6430, + "node id": "IC_kwDOB7-mp869Hroa", + "id": 3172907546, + "URL": "https://github.com/hackforla/website/issues/6430", + "skills": "SKILLS ISSUE" + }, + { + "username": "jphamtv", + "issue": 5873, + "node id": "IC_kwDOB7-mp869H2gL", + "id": 3172952075, + "URL": "https://github.com/hackforla/website/issues/5873", + "skills": "SKILLS ISSUE" + }, + { + "username": "jqg123", + "issue": 2523, + "node id": "IC_kwDOB7-mp869H2gG", + "id": 3172952070, + "URL": "https://github.com/hackforla/website/issues/2523", + "skills": "SKILLS ISSUE" + }, + { + "username": "jsnhn", + "issue": 7895, + "node id": "IC_kwDOB7-mp869HroL", + "id": 3172907531, + "URL": "https://github.com/hackforla/website/issues/7895", + "skills": "SKILLS ISSUE" + }, + { + "username": "JSTUN9", + "issue": 4322, + "node id": "IC_kwDOB7-mp869HroN", + "id": 3172907533, + "URL": "https://github.com/hackforla/website/issues/4322", + "skills": "SKILLS ISSUE" + }, + { + "username": "jtkabenni", + "issue": 6030, + "node id": "IC_kwDOB7-mp869Hrnw", + "id": 3172907504, + "URL": "https://github.com/hackforla/website/issues/6030", + "skills": "SKILLS ISSUE" + }, + { + "username": "jtw007", + "issue": 6031, + "node id": "IC_kwDOB7-mp869H2gE", + "id": 3172952068, + "URL": "https://github.com/hackforla/website/issues/6031", + "skills": "SKILLS ISSUE" + }, + { + "username": "juanramirezwebdev", + "issue": 7231, + "node id": "IC_kwDOB7-mp869HroW", + "id": 3172907542, + "URL": "https://github.com/hackforla/website/issues/7231", + "skills": "SKILLS ISSUE" + }, + { + "username": "juleanrod", + "issue": 3710, + "node id": "IC_kwDOB7-mp869HroP", + "id": 3172907535, + "URL": "https://github.com/hackforla/website/issues/3710", + "skills": "SKILLS ISSUE" + }, + { + "username": "julialuongw", + "issue": 5001, + "node id": "IC_kwDOB7-mp869H7JC", + "id": 3172971074, + "URL": "https://github.com/hackforla/website/issues/5001", + "skills": "SKILLS ISSUE" + }, + { + "username": "juliansmith0", + "issue": 3122, + "node id": "IC_kwDOB7-mp869Hrog", + "id": 3172907552, + "URL": "https://github.com/hackforla/website/issues/3122", + "skills": "SKILLS ISSUE" + }, + { + "username": "junadkat32", + "issue": 5090, + "node id": "IC_kwDOB7-mp869H2gD", + "id": 3172952067, + "URL": "https://github.com/hackforla/website/issues/5090", + "skills": "SKILLS ISSUE" + }, + { + "username": "Jung-GunSong", + "issue": 6042, + "node id": "IC_kwDOB7-mp869H2gF", + "id": 3172952069, + "URL": "https://github.com/hackforla/website/issues/6042", + "skills": "SKILLS ISSUE" + }, + { + "username": "junjun107", + "issue": 3512, + "node id": "IC_kwDOB7-mp869H2gB", + "id": 3172952065, + "URL": "https://github.com/hackforla/website/issues/3512", + "skills": "SKILLS ISSUE" + }, + { + "username": "Justin-Arakaki", + "issue": 5068, + "node id": "IC_kwDOB7-mp869HroZ", + "id": 3172907545, + "URL": "https://github.com/hackforla/website/issues/5068", + "skills": "SKILLS ISSUE" + }, + { + "username": "justinPemberton", + "issue": 3545, + "node id": "IC_kwDOB7-mp869H7cI", + "id": 3172972296, + "URL": "https://github.com/hackforla/website/issues/3545", + "skills": "SKILLS ISSUE" + }, + { + "username": "jyaymie", + "issue": 3610, + "node id": "IC_kwDOB7-mp869H2gK", + "id": 3172952074, + "URL": "https://github.com/hackforla/website/issues/3610", + "skills": "SKILLS ISSUE" + }, + { + "username": "kabszac", + "issue": 5487, + "node id": "IC_kwDOB7-mp869H3mf", + "id": 3172956575, + "URL": "https://github.com/hackforla/website/issues/5487", + "skills": "SKILLS ISSUE" + }, + { + "username": "kadamrahul18", + "issue": 8032, + "node id": "IC_kwDOB7-mp869H3mn", + "id": 3172956583, + "URL": "https://github.com/hackforla/website/issues/8032", + "skills": "SKILLS ISSUE" + }, + { + "username": "KalpanaTA", + "issue": 3245, + "node id": "IC_kwDOB7-mp869H3mZ", + "id": 3172956569, + "URL": "https://github.com/hackforla/website/issues/3245", + "skills": "SKILLS ISSUE" + }, + { + "username": "Kamalaprasaad", + "issue": 6420, + "node id": "IC_kwDOB7-mp869H3mc", + "id": 3172956572, + "URL": "https://github.com/hackforla/website/issues/6420", + "skills": "SKILLS ISSUE" + }, + { + "username": "karengcecena", + "issue": 4072, + "node id": "IC_kwDOB7-mp869H3mm", + "id": 3172956582, + "URL": "https://github.com/hackforla/website/issues/4072", + "skills": "SKILLS ISSUE" + }, + { + "username": "Karll-L", + "issue": 5075, + "node id": "IC_kwDOB7-mp869H3ma", + "id": 3172956570, + "URL": "https://github.com/hackforla/website/issues/5075", + "skills": "SKILLS ISSUE" + }, + { + "username": "kartiknesari", + "issue": 7927, + "node id": "IC_kwDOB7-mp869H3mi", + "id": 3172956578, + "URL": "https://github.com/hackforla/website/issues/7927", + "skills": "SKILLS ISSUE" + }, + { + "username": "katherinek123", + "issue": 4619, + "node id": "IC_kwDOB7-mp869H3mh", + "id": 3172956577, + "URL": "https://github.com/hackforla/website/issues/4619", + "skills": "SKILLS ISSUE" + }, + { + "username": "kathrynsilvaconway", + "issue": 3009, + "node id": "IC_kwDOB7-mp869IA8i", + "id": 3172994850, + "URL": "https://github.com/hackforla/website/issues/3009", + "skills": "SKILLS ISSUE" + }, + { + "username": "katiehermalik", + "issue": 4333, + "node id": "IC_kwDOB7-mp869H3mg", + "id": 3172956576, + "URL": "https://github.com/hackforla/website/issues/4333", + "skills": "SKILLS ISSUE" + }, + { + "username": "katiejnete", + "issue": 7695, + "node id": "IC_kwDOB7-mp869H3nM", + "id": 3172956620, + "URL": "https://github.com/hackforla/website/issues/7695", + "skills": "SKILLS ISSUE" + }, + { + "username": "kayi007", + "issue": 5734, + "node id": "IC_kwDOB7-mp869H3me", + "id": 3172956574, + "URL": "https://github.com/hackforla/website/issues/5734", + "skills": "SKILLS ISSUE" + }, + { + "username": "KazushiR", + "issue": 3882, + "node id": "IC_kwDOB7-mp869H3m8", + "id": 3172956604, + "URL": "https://github.com/hackforla/website/issues/3882", + "skills": "SKILLS ISSUE" + }, + { + "username": "KBWells77", + "issue": 3147, + "node id": "IC_kwDOB7-mp869IA79", + "id": 3172994813, + "URL": "https://github.com/hackforla/website/issues/3147", + "skills": "SKILLS ISSUE" + }, + { + "username": "k-cardon", + "issue": 7326, + "node id": "IC_kwDOB7-mp869H2gI", + "id": 3172952072, + "URL": "https://github.com/hackforla/website/issues/7326", + "skills": "SKILLS ISSUE" + }, + { + "username": "kdaca19xx", + "issue": 7971, + "node id": "IC_kwDOB7-mp869H3m2", + "id": 3172956598, + "URL": "https://github.com/hackforla/website/issues/7971", + "skills": "SKILLS ISSUE" + }, + { + "username": "kellyc9", + "issue": 6628, + "node id": "IC_kwDOB7-mp869H3mk", + "id": 3172956580, + "URL": "https://github.com/hackforla/website/issues/6628", + "skills": "SKILLS ISSUE" + }, + { + "username": "kelwilson", + "issue": 8068, + "node id": "IC_kwDOB7-mp869H3my", + "id": 3172956594, + "URL": "https://github.com/hackforla/website/issues/8068", + "skills": "SKILLS ISSUE" + }, + { + "username": "kennysghub", + "issue": 6596, + "node id": "IC_kwDOB7-mp869H3ml", + "id": 3172956581, + "URL": "https://github.com/hackforla/website/issues/6596", + "skills": "SKILLS ISSUE" + }, + { + "username": "kennytram", + "issue": 5615, + "node id": "IC_kwDOB7-mp869H3mr", + "id": 3172956587, + "URL": "https://github.com/hackforla/website/issues/5615", + "skills": "SKILLS ISSUE" + }, + { + "username": "kerimedeiros", + "issue": 3969, + "node id": "IC_kwDOB7-mp869H3mu", + "id": 3172956590, + "URL": "https://github.com/hackforla/website/issues/3969", + "skills": "SKILLS ISSUE" + }, + { + "username": "kesang20", + "issue": 4965, + "node id": "IC_kwDOB7-mp869H3mp", + "id": 3172956585, + "URL": "https://github.com/hackforla/website/issues/4965", + "skills": "SKILLS ISSUE" + }, + { + "username": "kevin31yu", + "issue": 5725, + "node id": "IC_kwDOB7-mp869H3m7", + "id": 3172956603, + "URL": "https://github.com/hackforla/website/issues/5725", + "skills": "SKILLS ISSUE" + }, + { + "username": "kevin-421", + "issue": 6128, + "node id": "IC_kwDOB7-mp869H3nY", + "id": 3172956632, + "URL": "https://github.com/hackforla/website/issues/6128", + "skills": "SKILLS ISSUE" + }, + { + "username": "kevinashworth", + "issue": 8131, + "node id": "IC_kwDOB7-mp869H3mo", + "id": 3172956584, + "URL": "https://github.com/hackforla/website/issues/8131", + "skills": "SKILLS ISSUE" + }, + { + "username": "kezzaam", + "issue": 5352, + "node id": "IC_kwDOB7-mp869H3m3", + "id": 3172956599, + "URL": "https://github.com/hackforla/website/issues/5352", + "skills": "SKILLS ISSUE" + }, + { + "username": "kgold2018", + "issue": 7232, + "node id": "IC_kwDOB7-mp869H3m1", + "id": 3172956597, + "URL": "https://github.com/hackforla/website/issues/7232", + "skills": "SKILLS ISSUE" + }, + { + "username": "Khadijahibidapo", + "issue": 3144, + "node id": "IC_kwDOB7-mp869H3mt", + "id": 3172956589, + "URL": "https://github.com/hackforla/website/issues/3144", + "skills": "SKILLS ISSUE" + }, + { + "username": "Khinememe-Kyaw", + "issue": 7894, + "node id": "IC_kwDOB7-mp869H3nE", + "id": 3172956612, + "URL": "https://github.com/hackforla/website/issues/7894", + "skills": "SKILLS ISSUE" + }, + { + "username": "Khwalab3ar", + "issue": 5866, + "node id": "IC_kwDOB7-mp869H3m0", + "id": 3172956596, + "URL": "https://github.com/hackforla/website/issues/5866", + "skills": "SKILLS ISSUE" + }, + { + "username": "kianaeunice", + "issue": 5216, + "node id": "IC_kwDOB7-mp869H3mq", + "id": 3172956586, + "URL": "https://github.com/hackforla/website/issues/5216", + "skills": "SKILLS ISSUE" + }, + { + "username": "kimberlytanyh", + "issue": 4117, + "node id": "IC_kwDOB7-mp869H3mv", + "id": 3172956591, + "URL": "https://github.com/hackforla/website/issues/4117", + "skills": "SKILLS ISSUE" + }, + { + "username": "kiran98118", + "issue": 5004, + "node id": "IC_kwDOB7-mp869H3m4", + "id": 3172956600, + "URL": "https://github.com/hackforla/website/issues/5004", + "skills": "SKILLS ISSUE" + }, + { + "username": "kiwookim", + "issue": 4620, + "node id": "IC_kwDOB7-mp869H3nG", + "id": 3172956614, + "URL": "https://github.com/hackforla/website/issues/4620", + "skills": "SKILLS ISSUE" + }, + { + "username": "kknight-7", + "issue": 8292, + "node id": "IC_kwDOB7-mp87BGi4n", + "id": "", + "URL": "https://github.com/hackforla/website/issues/8292", + "skills": "SKILLS ISSUE" + }, + { + "username": "Kle012", + "issue": 6341, + "node id": "IC_kwDOB7-mp869H3nW", + "id": 3172956630, + "URL": "https://github.com/hackforla/website/issues/6341", + "skills": "SKILLS ISSUE" + }, + { + "username": "klei0229", + "issue": 5219, + "node id": "IC_kwDOB7-mp869H3nP", + "id": 3172956623, + "URL": "https://github.com/hackforla/website/issues/5219", + "skills": "SKILLS ISSUE" + }, + { + "username": "kmdeakers", + "issue": 6252, + "node id": "IC_kwDOB7-mp869H3nA", + "id": 3172956608, + "URL": "https://github.com/hackforla/website/issues/6252", + "skills": "SKILLS ISSUE" + }, + { + "username": "KO1122", + "issue": 7830, + "node id": "IC_kwDOB7-mp869H3nL", + "id": 3172956619, + "URL": "https://github.com/hackforla/website/issues/7830", + "skills": "SKILLS ISSUE" + }, + { + "username": "kotynskm", + "issue": 3778, + "node id": "IC_kwDOB7-mp869H3ms", + "id": 3172956588, + "URL": "https://github.com/hackforla/website/issues/3778", + "skills": "SKILLS ISSUE" + }, + { + "username": "kpmunnelly", + "issue": 3410, + "node id": "IC_kwDOB7-mp869H3nB", + "id": 3172956609, + "URL": "https://github.com/hackforla/website/issues/3410", + "skills": "SKILLS ISSUE" + }, + { + "username": "k-rewd", + "issue": 4981, + "node id": "IC_kwDOB7-mp869H2gJ", + "id": 3172952073, + "URL": "https://github.com/hackforla/website/issues/4981", + "skills": "SKILLS ISSUE" + }, + { + "username": "kristinstockley", + "issue": 5353, + "node id": "IC_kwDOB7-mp869H3mz", + "id": 3172956595, + "URL": "https://github.com/hackforla/website/issues/5353", + "skills": "SKILLS ISSUE" + }, + { + "username": "KuanHsienYEH", + "issue": 6254, + "node id": "IC_kwDOB7-mp869H3m_", + "id": 3172956607, + "URL": "https://github.com/hackforla/website/issues/6254", + "skills": "SKILLS ISSUE" + }, + { + "username": "kurikurichan", + "issue": 3991, + "node id": "IC_kwDOB7-mp869H3m6", + "id": 3172956602, + "URL": "https://github.com/hackforla/website/issues/3991", + "skills": "SKILLS ISSUE" + }, + { + "username": "KwameTaylor", + "issue": 6812, + "node id": "IC_kwDOB7-mp869H3m9", + "id": 3172956605, + "URL": "https://github.com/hackforla/website/issues/6812", + "skills": "SKILLS ISSUE" + }, + { + "username": "kwangric", + "issue": 4169, + "node id": "IC_kwDOB7-mp869H3nk", + "id": 3172956644, + "URL": "https://github.com/hackforla/website/issues/4169", + "skills": "SKILLS ISSUE" + }, + { + "username": "KyleA99", + "issue": 5567, + "node id": "IC_kwDOB7-mp869H3m5", + "id": 3172956601, + "URL": "https://github.com/hackforla/website/issues/5567", + "skills": "SKILLS ISSUE" + }, + { + "username": "kyle-foral", + "issue": 5609, + "node id": "IC_kwDOB7-mp869H3nI", + "id": 3172956616, + "URL": "https://github.com/hackforla/website/issues/5609", + "skills": "SKILLS ISSUE" + }, + { + "username": "kyrakwak", + "issue": 3825, + "node id": "IC_kwDOB7-mp869H3nU", + "id": 3172956628, + "URL": "https://github.com/hackforla/website/issues/3825", + "skills": "SKILLS ISSUE" + }, + { + "username": "Lalla22", + "issue": 3781, + "node id": "IC_kwDOB7-mp869H3mx", + "id": 3172956593, + "URL": "https://github.com/hackforla/website/issues/3781", + "skills": "SKILLS ISSUE" + }, + { + "username": "lastCoyotes", + "issue": 8270, + "node id": "IC_kwDOB7-mp86_ptSj", + "id": 3215381667, + "URL": "https://github.com/hackforla/website/issues/8270", + "skills": "SKILLS ISSUE" + }, + { + "username": "lc1715", + "issue": 7746, + "node id": "IC_kwDOB7-mp869H3nO", + "id": 3172956622, + "URL": "https://github.com/hackforla/website/issues/7746", + "skills": "SKILLS ISSUE" + }, + { + "username": "ldaws003", + "issue": 3611, + "node id": "IC_kwDOB7-mp869H3nZ", + "id": 3172956633, + "URL": "https://github.com/hackforla/website/issues/3611", + "skills": "SKILLS ISSUE" + }, + { + "username": "ldietz08", + "issue": 4632, + "node id": "IC_kwDOB7-mp869IA8E", + "id": 3172994820, + "URL": "https://github.com/hackforla/website/issues/4632", + "skills": "SKILLS ISSUE" + }, + { + "username": "liamtirney", + "issue": 5065, + "node id": "IC_kwDOB7-mp869H3nN", + "id": 3172956621, + "URL": "https://github.com/hackforla/website/issues/5065", + "skills": "SKILLS ISSUE" + }, + { + "username": "lilyarj", + "issue": 3270, + "node id": "IC_kwDOB7-mp869IA8d", + "id": 3172994845, + "URL": "https://github.com/hackforla/website/issues/3270", + "skills": "SKILLS ISSUE" + }, + { + "username": "LilyLuo001", + "issue": 3246, + "node id": "IC_kwDOB7-mp869H3mw", + "id": 3172956592, + "URL": "https://github.com/hackforla/website/issues/3246", + "skills": "SKILLS ISSUE" + }, + { + "username": "Limeload", + "issue": 6349, + "node id": "IC_kwDOB7-mp869H3nK", + "id": 3172956618, + "URL": "https://github.com/hackforla/website/issues/6349", + "skills": "SKILLS ISSUE" + }, + { + "username": "lindsay-jin", + "issue": 6944, + "node id": "IC_kwDOB7-mp869H3nT", + "id": 3172956627, + "URL": "https://github.com/hackforla/website/issues/6944", + "skills": "SKILLS ISSUE" + }, + { + "username": "lindseyindev", + "issue": 2547, + "node id": "IC_kwDOB7-mp869H3ni", + "id": 3172956642, + "URL": "https://github.com/hackforla/website/issues/2547", + "skills": "SKILLS ISSUE" + }, + { + "username": "lisa-shens", + "issue": 8267, + "node id": "IC_kwDOB7-mp86_psog", + "id": 3215378976, + "URL": "https://github.com/hackforla/website/issues/8267", + "skills": "SKILLS ISSUE" + }, + { + "username": "locb65", + "issue": 4972, + "node id": "IC_kwDOB7-mp869H3nb", + "id": 3172956635, + "URL": "https://github.com/hackforla/website/issues/4972", + "skills": "SKILLS ISSUE" + }, + { + "username": "lopezpedres", + "issue": 2522, + "node id": "IC_kwDOB7-mp869H3nR", + "id": 3172956625, + "URL": "https://github.com/hackforla/website/issues/2522", + "skills": "SKILLS ISSUE" + }, + { + "username": "LOSjr4", + "issue": 4070, + "node id": "IC_kwDOB7-mp869IA8M", + "id": 3172994828, + "URL": "https://github.com/hackforla/website/issues/4070", + "skills": "SKILLS ISSUE" + }, + { + "username": "louiewhitz", + "issue": 4729, + "node id": "IC_kwDOB7-mp869H3nc", + "id": 3172956636, + "URL": "https://github.com/hackforla/website/issues/4729", + "skills": "SKILLS ISSUE" + }, + { + "username": "loveshah751", + "issue": 3149, + "node id": "IC_kwDOB7-mp869H3nF", + "id": 3172956613, + "URL": "https://github.com/hackforla/website/issues/3149", + "skills": "SKILLS ISSUE" + }, + { + "username": "LRenDO", + "issue": 4719, + "node id": "IC_kwDOB7-mp869IA8n", + "id": 3172994855, + "URL": "https://github.com/hackforla/website/issues/4719", + "skills": "SKILLS ISSUE" + }, + { + "username": "lrobinson823", + "issue": 2558, + "node id": "IC_kwDOB7-mp869H3nn", + "id": 3172956647, + "URL": "https://github.com/hackforla/website/issues/2558", + "skills": "SKILLS ISSUE" + }, + { + "username": "LuccaWang1", + "issue": 6610, + "node id": "IC_kwDOB7-mp869H3nC", + "id": 3172956610, + "URL": "https://github.com/hackforla/website/issues/6610", + "skills": "SKILLS ISSUE" + }, + { + "username": "luiderek", + "issue": 3682, + "node id": "IC_kwDOB7-mp869H3ne", + "id": 3172956638, + "URL": "https://github.com/hackforla/website/issues/3682", + "skills": "SKILLS ISSUE" + }, + { + "username": "luisitocanlas", + "issue": 6249, + "node id": "IC_kwDOB7-mp869IA8h", + "id": 3172994849, + "URL": "https://github.com/hackforla/website/issues/6249", + "skills": "SKILLS ISSUE" + }, + { + "username": "luke-karis", + "issue": 2727, + "node id": "IC_kwDOB7-mp869H3na", + "id": 3172956634, + "URL": "https://github.com/hackforla/website/issues/2727", + "skills": "SKILLS ISSUE" + }, + { + "username": "LukeLowrey2", + "issue": 4994, + "node id": "IC_kwDOB7-mp869IA8H", + "id": 3172994823, + "URL": "https://github.com/hackforla/website/issues/4994", + "skills": "SKILLS ISSUE" + }, + { + "username": "lukewangm", + "issue": 6421, + "node id": "IC_kwDOB7-mp869H3nH", + "id": 3172956615, + "URL": "https://github.com/hackforla/website/issues/6421", + "skills": "SKILLS ISSUE" + }, + { + "username": "lytravis", + "issue": 3684, + "node id": "IC_kwDOB7-mp869H3m-", + "id": 3172956606, + "URL": "https://github.com/hackforla/website/issues/3684", + "skills": "SKILLS ISSUE" + }, + { + "username": "m0hith", + "issue": 7025, + "node id": "IC_kwDOB7-mp869H3nD", + "id": 3172956611, + "URL": "https://github.com/hackforla/website/issues/7025", + "skills": "SKILLS ISSUE" + }, + { + "username": "maadeshsivakumar", + "issue": 7203, + "node id": "IC_kwDOB7-mp869H3nl", + "id": 3172956645, + "URL": "https://github.com/hackforla/website/issues/7203", + "skills": "SKILLS ISSUE" + }, + { + "username": "Maarimar", + "issue": 8065, + "node id": "IC_kwDOB7-mp869IA7-", + "id": 3172994814, + "URL": "https://github.com/hackforla/website/issues/8065", + "skills": "SKILLS ISSUE" + }, + { + "username": "MacTirney", + "issue": 5066, + "node id": "IC_kwDOB7-mp869IA78", + "id": 3172994812, + "URL": "https://github.com/hackforla/website/issues/5066", + "skills": "SKILLS ISSUE" + }, + { + "username": "mademarc", + "issue": 3780, + "node id": "IC_kwDOB7-mp869IA8g", + "id": 3172994848, + "URL": "https://github.com/hackforla/website/issues/3780", + "skills": "SKILLS ISSUE" + }, + { + "username": "Maia-Cochran", + "issue": 4332, + "node id": "IC_kwDOB7-mp869H3nJ", + "id": 3172956617, + "URL": "https://github.com/hackforla/website/issues/4332", + "skills": "SKILLS ISSUE" + }, + { + "username": "mamypoco", + "issue": 7626, + "node id": "IC_kwDOB7-mp869H3nh", + "id": 3172956641, + "URL": "https://github.com/hackforla/website/issues/7626", + "skills": "SKILLS ISSUE" + }, + { + "username": "manaswita3303", + "issue": 7893, + "node id": "IC_kwDOB7-mp869H3nX", + "id": 3172956631, + "URL": "https://github.com/hackforla/website/issues/7893", + "skills": "SKILLS ISSUE" + }, + { + "username": "MarcosG119", + "issue": 6330, + "node id": "IC_kwDOB7-mp869IA8Q", + "id": 3172994832, + "URL": "https://github.com/hackforla/website/issues/6330", + "skills": "SKILLS ISSUE" + }, + { + "username": "Margotaro", + "issue": 8033, + "node id": "IC_kwDOB7-mp869H3nQ", + "id": 3172956624, + "URL": "https://github.com/hackforla/website/issues/8033", + "skills": "SKILLS ISSUE" + }, + { + "username": "mariareeves", + "issue": 5924, + "node id": "IC_kwDOB7-mp869H3nq", + "id": 3172956650, + "URL": "https://github.com/hackforla/website/issues/5924", + "skills": "SKILLS ISSUE" + }, + { + "username": "marioantonini", + "issue": 6427, + "node id": "IC_kwDOB7-mp869IA8B", + "id": 3172994817, + "URL": "https://github.com/hackforla/website/issues/6427", + "skills": "SKILLS ISSUE" + }, + { + "username": "mariorecinos", + "issue": 4172, + "node id": "IC_kwDOB7-mp869H3nS", + "id": 3172956626, + "URL": "https://github.com/hackforla/website/issues/4172", + "skills": "SKILLS ISSUE" + }, + { + "username": "MarkWiltberger", + "issue": 3915, + "node id": "IC_kwDOB7-mp869IA7_", + "id": 3172994815, + "URL": "https://github.com/hackforla/website/issues/3915", + "skills": "SKILLS ISSUE" + }, + { + "username": "maryjng", + "issue": 3788, + "node id": "IC_kwDOB7-mp869H3no", + "id": 3172956648, + "URL": "https://github.com/hackforla/website/issues/3788", + "skills": "SKILLS ISSUE" + }, + { + "username": "masautt", + "issue": 6604, + "node id": "IC_kwDOB7-mp869H3nf", + "id": 3172956639, + "URL": "https://github.com/hackforla/website/issues/6604", + "skills": "SKILLS ISSUE" + }, + { + "username": "matt-arofin", + "issue": 3063, + "node id": "IC_kwDOB7-mp869H3nj", + "id": 3172956643, + "URL": "https://github.com/hackforla/website/issues/3063", + "skills": "SKILLS ISSUE" + }, + { + "username": "MattChau01", + "issue": 4973, + "node id": "IC_kwDOB7-mp869IA8T", + "id": 3172994835, + "URL": "https://github.com/hackforla/website/issues/4973", + "skills": "SKILLS ISSUE" + }, + { + "username": "matteores", + "issue": 6361, + "node id": "IC_kwDOB7-mp869H3nV", + "id": 3172956629, + "URL": "https://github.com/hackforla/website/issues/6361", + "skills": "SKILLS ISSUE" + }, + { + "username": "MatthewBozin", + "issue": 3638, + "node id": "IC_kwDOB7-mp869H3nm", + "id": 3172956646, + "URL": "https://github.com/hackforla/website/issues/3638", + "skills": "SKILLS ISSUE" + }, + { + "username": "matthewmpan", + "issue": 4614, + "node id": "IC_kwDOB7-mp869IA8D", + "id": 3172994819, + "URL": "https://github.com/hackforla/website/issues/4614", + "skills": "SKILLS ISSUE" + }, + { + "username": "mattmalane", + "issue": 4067, + "node id": "IC_kwDOB7-mp869IA8W", + "id": 3172994838, + "URL": "https://github.com/hackforla/website/issues/4067", + "skills": "SKILLS ISSUE" + }, + { + "username": "MattPereira", + "issue": 3602, + "node id": "IC_kwDOB7-mp869IA8m", + "id": 3172994854, + "URL": "https://github.com/hackforla/website/issues/3602", + "skills": "SKILLS ISSUE" + }, + { + "username": "Mattre7", + "issue": 3243, + "node id": "IC_kwDOB7-mp869H3ng", + "id": 3172956640, + "URL": "https://github.com/hackforla/website/issues/3243", + "skills": "SKILLS ISSUE" + }, + { + "username": "max1million101", + "issue": 6039, + "node id": "IC_kwDOB7-mp869H3nd", + "id": 3172956637, + "URL": "https://github.com/hackforla/website/issues/6039", + "skills": "SKILLS ISSUE" + }, + { + "username": "Mayank2808sharma", + "issue": 4629, + "node id": "IC_kwDOB7-mp869H3nr", + "id": 3172956651, + "URL": "https://github.com/hackforla/website/issues/4629", + "skills": "SKILLS ISSUE" + }, + { + "username": "maybleMyers", + "issue": 2940, + "node id": "IC_kwDOB7-mp869IA8R", + "id": 3172994833, + "URL": "https://github.com/hackforla/website/issues/2940", + "skills": "SKILLS ISSUE" + }, + { + "username": "mccormackstudio", + "issue": 2692, + "node id": "IC_kwDOB7-mp869IA8A", + "id": 3172994816, + "URL": "https://github.com/hackforla/website/issues/2692", + "skills": "SKILLS ISSUE" + }, + { + "username": "mchait18", + "issue": 7696, + "node id": "IC_kwDOB7-mp869IA8a", + "id": 3172994842, + "URL": "https://github.com/hackforla/website/issues/7696", + "skills": "SKILLS ISSUE" + }, + { + "username": "mchavezm", + "issue": 3124, + "node id": "IC_kwDOB7-mp869IA8U", + "id": 3172994836, + "URL": "https://github.com/hackforla/website/issues/3124", + "skills": "SKILLS ISSUE" + }, + { + "username": "mclotta", + "issue": 8030, + "node id": "IC_kwDOB7-mp869IA8N", + "id": 3172994829, + "URL": "https://github.com/hackforla/website/issues/8030", + "skills": "SKILLS ISSUE" + }, + { + "username": "MCoding1", + "issue": 3272, + "node id": "IC_kwDOB7-mp869IA8C", + "id": 3172994818, + "URL": "https://github.com/hackforla/website/issues/3272", + "skills": "SKILLS ISSUE" + }, + { + "username": "MDivyaPrakash", + "issue": 4986, + "node id": "IC_kwDOB7-mp869IA8K", + "id": 3172994826, + "URL": "https://github.com/hackforla/website/issues/4986", + "skills": "SKILLS ISSUE" + }, + { + "username": "melissaluc", + "issue": 8008, + "node id": "IC_kwDOB7-mp869IA8X", + "id": 3172994839, + "URL": "https://github.com/hackforla/website/issues/8008", + "skills": "SKILLS ISSUE" + }, + { + "username": "melissam640", + "issue": 7029, + "node id": "IC_kwDOB7-mp869IA8J", + "id": 3172994825, + "URL": "https://github.com/hackforla/website/issues/7029", + "skills": "SKILLS ISSUE" + }, + { + "username": "meru-a", + "issue": 5215, + "node id": "IC_kwDOB7-mp869IA8S", + "id": 3172994834, + "URL": "https://github.com/hackforla/website/issues/5215", + "skills": "SKILLS ISSUE" + }, + { + "username": "MicahBear", + "issue": 3992, + "node id": "IC_kwDOB7-mp869IA8V", + "id": 3172994837, + "URL": "https://github.com/hackforla/website/issues/3992", + "skills": "SKILLS ISSUE" + }, + { + "username": "michael-4", + "issue": 8006, + "node id": "IC_kwDOB7-mp869IA8Y", + "id": 3172994840, + "URL": "https://github.com/hackforla/website/issues/8006", + "skills": "SKILLS ISSUE" + }, + { + "username": "michaelmagen", + "issue": 3569, + "node id": "IC_kwDOB7-mp869IA8I", + "id": 3172994824, + "URL": "https://github.com/hackforla/website/issues/3569", + "skills": "SKILLS ISSUE" + }, + { + "username": "michelle-jx", + "issue": 5861, + "node id": "IC_kwDOB7-mp869IA8O", + "id": 3172994830, + "URL": "https://github.com/hackforla/website/issues/5861", + "skills": "SKILLS ISSUE" + }, + { + "username": "mimiwrp", + "issue": 7028, + "node id": "IC_kwDOB7-mp869IA8P", + "id": 3172994831, + "URL": "https://github.com/hackforla/website/issues/7028", + "skills": "SKILLS ISSUE" + }, + { + "username": "minkang3", + "issue": 7216, + "node id": "IC_kwDOB7-mp869IA8e", + "id": 3172994846, + "URL": "https://github.com/hackforla/website/issues/7216", + "skills": "SKILLS ISSUE" + }, + { + "username": "mioriimai", + "issue": 5348, + "node id": "IC_kwDOB7-mp869IA8F", + "id": 3172994821, + "URL": "https://github.com/hackforla/website/issues/5348", + "skills": "SKILLS ISSUE" + }, + { + "username": "MitchellDoesCoding", + "issue": 8291, + "node id": "IC_kwDOB7-mp87BGkr_", + "id": "", + "URL": "https://github.com/hackforla/website/issues/8291", + "skills": "SKILLS ISSUE" + }, + { + "username": "MitchellMaliglig", + "issue": 4615, + "node id": "IC_kwDOB7-mp869H3np", + "id": 3172956649, + "URL": "https://github.com/hackforla/website/issues/4615", + "skills": "SKILLS ISSUE" + }, + { + "username": "mjh-projects", + "issue": 3911, + "node id": "IC_kwDOB7-mp869IA8b", + "id": 3172994843, + "URL": "https://github.com/hackforla/website/issues/3911", + "skills": "SKILLS ISSUE" + }, + { + "username": "mjshelton12", + "issue": 4163, + "node id": "IC_kwDOB7-mp869IA8L", + "id": 3172994827, + "URL": "https://github.com/hackforla/website/issues/4163", + "skills": "SKILLS ISSUE" + }, + { + "username": "mktr4n", + "issue": 7573, + "node id": "IC_kwDOB7-mp869Ipyo", + "id": 3173162152, + "URL": "https://github.com/hackforla/website/issues/7573", + "skills": "SKILLS ISSUE" + }, + { + "username": "mlkara", + "issue": 4715, + "node id": "IC_kwDOB7-mp869IpyY", + "id": 3173162136, + "URL": "https://github.com/hackforla/website/issues/4715", + "skills": "SKILLS ISSUE" + }, + { + "username": "mmcclanahan", + "issue": 7207, + "node id": "IC_kwDOB7-mp869Ipyp", + "id": 3173162153, + "URL": "https://github.com/hackforla/website/issues/7207", + "skills": "SKILLS ISSUE" + }, + { + "username": "mmogri", + "issue": 3150, + "node id": "IC_kwDOB7-mp869IpyE", + "id": 3173162116, + "URL": "https://github.com/hackforla/website/issues/3150", + "skills": "SKILLS ISSUE" + }, + { + "username": "moazDev1", + "issue": 6602, + "node id": "IC_kwDOB7-mp869IpzC", + "id": 3173162178, + "URL": "https://github.com/hackforla/website/issues/6602", + "skills": "SKILLS ISSUE" + }, + { + "username": "MohamedAlsyouf", + "issue": 3186, + "node id": "IC_kwDOB7-mp869IpyC", + "id": "", + "URL": "https://github.com/hackforla/website/issues/3186", + "skills": "SKILLS ISSUE" + }, + { + "username": "MohamedTwahir", + "issue": 8294, + "node id": "IC_kwDOB7-mp87BGk7q", + "id": "", + "URL": "https://github.com/hackforla/website/issues/8294", + "skills": "SKILLS ISSUE" + }, + { + "username": "mohassan99", + "issue": 7841, + "node id": "IC_kwDOB7-mp869IpyS", + "id": 3173162130, + "URL": "https://github.com/hackforla/website/issues/7841", + "skills": "SKILLS ISSUE" + }, + { + "username": "monaecurbeam98", + "issue": 6876, + "node id": "IC_kwDOB7-mp869IpyP", + "id": 3173162127, + "URL": "https://github.com/hackforla/website/issues/6876", + "skills": "SKILLS ISSUE" + }, + { + "username": "Monomer9", + "issue": 8187, + "node id": "IC_kwDOB7-mp869IpyM", + "id": 3173162124, + "URL": "https://github.com/hackforla/website/issues/8187", + "skills": "SKILLS ISSUE" + }, + { + "username": "mrodz", + "issue": 6884, + "node id": "IC_kwDOB7-mp869Ipyj", + "id": 3173162147, + "URL": "https://github.com/hackforla/website/issues/6884", + "skills": "SKILLS ISSUE" + }, + { + "username": "mSharifHub", + "issue": 6953, + "node id": "IC_kwDOB7-mp869IpyJ", + "id": 3173162121, + "URL": "https://github.com/hackforla/website/issues/6953", + "skills": "SKILLS ISSUE" + }, + { + "username": "mshirk2", + "issue": 4983, + "node id": "IC_kwDOB7-mp869IpyX", + "id": 3173162135, + "URL": "https://github.com/hackforla/website/issues/4983", + "skills": "SKILLS ISSUE" + }, + { + "username": "msiller455", + "issue": 5723, + "node id": "IC_kwDOB7-mp869IpyI", + "id": 3173162120, + "URL": "https://github.com/hackforla/website/issues/5723", + "skills": "SKILLS ISSUE" + }, + { + "username": "mugdhchauhan", + "issue": 7698, + "node id": "IC_kwDOB7-mp869Ipyl", + "id": 3173162149, + "URL": "https://github.com/hackforla/website/issues/7698", + "skills": "SKILLS ISSUE" + }, + { + "username": "myronchen-git", + "issue": 8274, + "node id": "IC_kwDOB7-mp86_pt4-", + "id": 3215384126, + "URL": "https://github.com/hackforla/website/issues/8274", + "skills": "SKILLS ISSUE" + }, + { + "username": "NamanhTran", + "issue": 2702, + "node id": "IC_kwDOB7-mp869IpyT", + "id": 3173162131, + "URL": "https://github.com/hackforla/website/issues/2702", + "skills": "SKILLS ISSUE" + }, + { + "username": "nancy-luu", + "issue": 4068, + "node id": "IC_kwDOB7-mp869IpyD", + "id": 3173162115, + "URL": "https://github.com/hackforla/website/issues/4068", + "skills": "SKILLS ISSUE" + }, + { + "username": "nathan944", + "issue": 3066, + "node id": "IC_kwDOB7-mp869IpzI", + "id": 3173162184, + "URL": "https://github.com/hackforla/website/issues/3066", + "skills": "SKILLS ISSUE" + }, + { + "username": "naveenmallemala5", + "issue": 5361, + "node id": "IC_kwDOB7-mp869IpyG", + "id": 3173162118, + "URL": "https://github.com/hackforla/website/issues/5361", + "skills": "SKILLS ISSUE" + }, + { + "username": "naveentata", + "issue": 6947, + "node id": "IC_kwDOB7-mp869Ipya", + "id": 3173162138, + "URL": "https://github.com/hackforla/website/issues/6947", + "skills": "SKILLS ISSUE" + }, + { + "username": "nchanyal", + "issue": 7978, + "node id": "IC_kwDOB7-mp869IpyR", + "id": 3173162129, + "URL": "https://github.com/hackforla/website/issues/7978", + "skills": "SKILLS ISSUE" + }, + { + "username": "ndmoc", + "issue": 5208, + "node id": "IC_kwDOB7-mp869Ipyq", + "id": 3173162154, + "URL": "https://github.com/hackforla/website/issues/5208", + "skills": "SKILLS ISSUE" + }, + { + "username": "neevliberman", + "issue": 3366, + "node id": "IC_kwDOB7-mp869IpyL", + "id": 3173162123, + "URL": "https://github.com/hackforla/website/issues/3366", + "skills": "SKILLS ISSUE" + }, + { + "username": "nehasyed97", + "issue": 3411, + "node id": "IC_kwDOB7-mp869IpyO", + "id": 3173162126, + "URL": "https://github.com/hackforla/website/issues/3411", + "skills": "SKILLS ISSUE" + }, + { + "username": "nelsonuprety1", + "issue": 6035, + "node id": "IC_kwDOB7-mp869I3oF", + "id": 3173218821, + "URL": "https://github.com/hackforla/website/issues/6035", + "skills": "SKILLS ISSUE" + }, + { + "username": "neonPurple", + "issue": 3972, + "node id": "IC_kwDOB7-mp869Ipye", + "id": 3173162142, + "URL": "https://github.com/hackforla/website/issues/3972", + "skills": "SKILLS ISSUE" + }, + { + "username": "neshacascia", + "issue": 4628, + "node id": "IC_kwDOB7-mp869IpyK", + "id": 3173162122, + "URL": "https://github.com/hackforla/website/issues/4628", + "skills": "SKILLS ISSUE" + }, + { + "username": "Nezzer3", + "issue": 8297, + "node id": "IC_kwDOB7-mp87BGmOP", + "id": "", + "URL": "https://github.com/hackforla/website/issues/8297", + "skills": "SKILLS ISSUE" + }, + { + "username": "Nick-McCarthy", + "issue": 4635, + "node id": "IC_kwDOB7-mp869IpzG", + "id": 3173162182, + "URL": "https://github.com/hackforla/website/issues/4635", + "skills": "SKILLS ISSUE" + }, + { + "username": "nicolettedmabeza", + "issue": 3968, + "node id": "IC_kwDOB7-mp869IpyQ", + "id": 3173162128, + "URL": "https://github.com/hackforla/website/issues/3968", + "skills": "SKILLS ISSUE" + }, + { + "username": "njackman-2344", + "issue": 5223, + "node id": "IC_kwDOB7-mp869Ipy7", + "id": 3173162171, + "URL": "https://github.com/hackforla/website/issues/5223", + "skills": "SKILLS ISSUE" + }, + { + "username": "nlee806", + "issue": 5229, + "node id": "IC_kwDOB7-mp869IpyZ", + "id": 3173162137, + "URL": "https://github.com/hackforla/website/issues/5229", + "skills": "SKILLS ISSUE" + }, + { + "username": "nmotamedi", + "issue": 7741, + "node id": "IC_kwDOB7-mp869IpyW", + "id": 3173162134, + "URL": "https://github.com/hackforla/website/issues/7741", + "skills": "SKILLS ISSUE" + }, + { + "username": "nnr-nnr", + "issue": 4063, + "node id": "IC_kwDOB7-mp869Ipyr", + "id": 3173162155, + "URL": "https://github.com/hackforla/website/issues/4063", + "skills": "SKILLS ISSUE" + }, + { + "username": "NolaDodd", + "issue": 7221, + "node id": "IC_kwDOB7-mp869IpzN", + "id": 3173162189, + "URL": "https://github.com/hackforla/website/issues/7221", + "skills": "SKILLS ISSUE" + }, + { + "username": "NomadCode33", + "issue": 8296, + "node id": "IC_kwDOB7-mp87BGmdH", + "id": "", + "URL": "https://github.com/hackforla/website/issues/8296", + "skills": "SKILLS ISSUE" + }, + { + "username": "notSayam", + "issue": 7338, + "node id": "IC_kwDOB7-mp869IpyN", + "id": 3173162125, + "URL": "https://github.com/hackforla/website/issues/7338", + "skills": "SKILLS ISSUE" + }, + { + "username": "NPriyaK", + "issue": 7224, + "node id": "IC_kwDOB7-mp869Ipyk", + "id": 3173162148, + "URL": "https://github.com/hackforla/website/issues/7224", + "skills": "SKILLS ISSUE" + }, + { + "username": "nssensalo", + "issue": 6528, + "node id": "IC_kwDOB7-mp869Ipy2", + "id": 3173162166, + "URL": "https://github.com/hackforla/website/issues/6528", + "skills": "SKILLS ISSUE" + }, + { + "username": "nubilaxl", + "issue": 8191, + "node id": "IC_kwDOB7-mp869Ipyc", + "id": 3173162140, + "URL": "https://github.com/hackforla/website/issues/8191", + "skills": "SKILLS ISSUE" + }, + { + "username": "nung22", + "issue": 4324, + "node id": "IC_kwDOB7-mp869IpyV", + "id": 3173162133, + "URL": "https://github.com/hackforla/website/issues/4324", + "skills": "SKILLS ISSUE" + }, + { + "username": "oiseeurmt", + "issue": 7827, + "node id": "IC_kwDOB7-mp869Ipyb", + "id": 3173162139, + "URL": "https://github.com/hackforla/website/issues/7827", + "skills": "SKILLS ISSUE" + }, + { + "username": "Olanrewaju-Ak", + "issue": 3065, + "node id": "IC_kwDOB7-mp869Ipyh", + "id": 3173162145, + "URL": "https://github.com/hackforla/website/issues/3065", + "skills": "SKILLS ISSUE" + }, + { + "username": "oliviaywangn", + "issue": 3126, + "node id": "IC_kwDOB7-mp869Ipy_", + "id": 3173162175, + "URL": "https://github.com/hackforla/website/issues/3126", + "skills": "SKILLS ISSUE" + }, + { + "username": "oliviazhai", + "issue": 4177, + "node id": "IC_kwDOB7-mp869IpzK", + "id": 3173162186, + "URL": "https://github.com/hackforla/website/issues/4177", + "skills": "SKILLS ISSUE" + }, + { + "username": "olivioso", + "issue": 3251, + "node id": "IC_kwDOB7-mp869Ipyd", + "id": 3173162141, + "URL": "https://github.com/hackforla/website/issues/3251", + "skills": "SKILLS ISSUE" + }, + { + "username": "one2code", + "issue": 4335, + "node id": "IC_kwDOB7-mp869I269", + "id": 3173215933, + "URL": "https://github.com/hackforla/website/issues/4335", + "skills": "SKILLS ISSUE" + }, + { + "username": "ortegaa32", + "issue": 5212, + "node id": "IC_kwDOB7-mp869Ipy5", + "id": 3173162169, + "URL": "https://github.com/hackforla/website/issues/5212", + "skills": "SKILLS ISSUE" + }, + { + "username": "Ovando21", + "issue": 6121, + "node id": "IC_kwDOB7-mp869Ipy-", + "id": 3173162174, + "URL": "https://github.com/hackforla/website/issues/6121", + "skills": "SKILLS ISSUE" + }, + { + "username": "owaisjunedi", + "issue": 7973, + "node id": "IC_kwDOB7-mp869Ipyg", + "id": 3173162144, + "URL": "https://github.com/hackforla/website/issues/7973", + "skills": "SKILLS ISSUE" + }, + { + "username": "palomasoltys", + "issue": 3542, + "node id": "IC_kwDOB7-mp869Ipyf", + "id": 3173162143, + "URL": "https://github.com/hackforla/website/issues/3542", + "skills": "SKILLS ISSUE" + }, + { + "username": "Panipopomango", + "issue": 6527, + "node id": "IC_kwDOB7-mp869Ipym", + "id": 3173162150, + "URL": "https://github.com/hackforla/website/issues/6527", + "skills": "SKILLS ISSUE" + }, + { + "username": "ParigiSaiTeja", + "issue": 7023, + "node id": "IC_kwDOB7-mp869IpzO", + "id": 3173162190, + "URL": "https://github.com/hackforla/website/issues/7023", + "skills": "SKILLS ISSUE" + }, + { + "username": "partapparam", + "issue": 6333, + "node id": "IC_kwDOB7-mp869Ipyz", + "id": 3173162163, + "URL": "https://github.com/hackforla/website/issues/6333", + "skills": "SKILLS ISSUE" + }, + { + "username": "Patdabaker", + "issue": 8186, + "node id": "IC_kwDOB7-mp869Ipyn", + "id": 3173162151, + "URL": "https://github.com/hackforla/website/issues/8186", + "skills": "SKILLS ISSUE" + }, + { + "username": "patelbansi3009", + "issue": 6419, + "node id": "IC_kwDOB7-mp869IpzT", + "id": 3173162195, + "URL": "https://github.com/hackforla/website/issues/6419", + "skills": "SKILLS ISSUE" + }, + { + "username": "patrickohh", + "issue": 3639, + "node id": "IC_kwDOB7-mp869Ipyt", + "id": 3173162157, + "URL": "https://github.com/hackforla/website/issues/3639", + "skills": "SKILLS ISSUE" + }, + { + "username": "pattshreds", + "issue": 2636, + "node id": "IC_kwDOB7-mp869Ipy8", + "id": 3173162172, + "URL": "https://github.com/hackforla/website/issues/2636", + "skills": "SKILLS ISSUE" + }, + { + "username": "paulbmun", + "issue": 5067, + "node id": "IC_kwDOB7-mp869Ipyv", + "id": 3173162159, + "URL": "https://github.com/hackforla/website/issues/5067", + "skills": "SKILLS ISSUE" + }, + { + "username": "Pauljsyi", + "issue": 2716, + "node id": "IC_kwDOB7-mp869Ipyy", + "id": 3173162162, + "URL": "https://github.com/hackforla/website/issues/2716", + "skills": "SKILLS ISSUE" + }, + { + "username": "pdimaano", + "issue": 4327, + "node id": "IC_kwDOB7-mp869IpzQ", + "id": 3173162192, + "URL": "https://github.com/hackforla/website/issues/4327", + "skills": "SKILLS ISSUE" + }, + { + "username": "perlaroyerc", + "issue": 3776, + "node id": "IC_kwDOB7-mp869Qt_C", + "id": 3175276482, + "URL": "https://github.com/hackforla/website/issues/3776", + "skills": "SKILLS ISSUE" + }, + { + "username": "PeterSYoo", + "issue": 3637, + "node id": "IC_kwDOB7-mp869Ipy9", + "id": 3173162173, + "URL": "https://github.com/hackforla/website/issues/3637", + "skills": "SKILLS ISSUE" + }, + { + "username": "Pfulcher26", + "issue": 5772, + "node id": "IC_kwDOB7-mp869Ipyu", + "id": 3173162158, + "URL": "https://github.com/hackforla/website/issues/5772", + "skills": "SKILLS ISSUE" + }, + { + "username": "phunguyen1195", + "issue": 7839, + "node id": "IC_kwDOB7-mp869Ipyx", + "id": 3173162161, + "URL": "https://github.com/hackforla/website/issues/7839", + "skills": "SKILLS ISSUE" + }, + { + "username": "phuonguvan", + "issue": 2993, + "node id": "IC_kwDOB7-mp86_pst7", + "id": "", + "URL": "https://github.com/hackforla/website/issues/2993", + "skills": "SKILLS ISSUE" + }, + { + "username": "phuongv8", + "issue": 3917, + "node id": "IC_kwDOB7-mp869Ipys", + "id": 3173162156, + "URL": "https://github.com/hackforla/website/issues/3917", + "skills": "SKILLS ISSUE" + }, + { + "username": "piecanoe", + "issue": 5775, + "node id": "IC_kwDOB7-mp869IpzD", + "id": 3173162179, + "URL": "https://github.com/hackforla/website/issues/5775", + "skills": "SKILLS ISSUE" + }, + { + "username": "pjpatel021", + "issue": 2708, + "node id": "IC_kwDOB7-mp869IpyH", + "id": 3173162119, + "URL": "https://github.com/hackforla/website/issues/2708", + "skills": "SKILLS ISSUE" + }, + { + "username": "plang-psm", + "issue": 3511, + "node id": "IC_kwDOB7-mp869IpzS", + "id": 3173162194, + "URL": "https://github.com/hackforla/website/issues/3511", + "skills": "SKILLS ISSUE" + }, + { + "username": "pluto-bell", + "issue": 7200, + "node id": "IC_kwDOB7-mp869IpzJ", + "id": 3173162185, + "URL": "https://github.com/hackforla/website/issues/7200", + "skills": "SKILLS ISSUE" + }, + { + "username": "PMKnight", + "issue": 3004, + "node id": "IC_kwDOB7-mp869IpzE", + "id": 3173162180, + "URL": "https://github.com/hackforla/website/issues/3004", + "skills": "SKILLS ISSUE" + }, + { + "username": "poorvi4", + "issue": 2964, + "node id": "IC_kwDOB7-mp869IpzA", + "id": 3173162176, + "URL": "https://github.com/hackforla/website/issues/2964", + "skills": "SKILLS ISSUE" + }, + { + "username": "PoppaRainmaker", + "issue": 5082, + "node id": "IC_kwDOB7-mp869Ipyw", + "id": 3173162160, + "URL": "https://github.com/hackforla/website/issues/5082", + "skills": "SKILLS ISSUE" + }, + { + "username": "pranjaliseth", + "issue": 6118, + "node id": "IC_kwDOB7-mp869Ipy6", + "id": 3173162170, + "URL": "https://github.com/hackforla/website/issues/6118", + "skills": "SKILLS ISSUE" + }, + { + "username": "praytoo", + "issue": 8190, + "node id": "IC_kwDOB7-mp869Qt-0", + "id": 3175276468, + "URL": "https://github.com/hackforla/website/issues/8190", + "skills": "SKILLS ISSUE" + }, + { + "username": "purna-madala", + "issue": 7018, + "node id": "IC_kwDOB7-mp869Qt-6", + "id": 3175276474, + "URL": "https://github.com/hackforla/website/issues/7018", + "skills": "SKILLS ISSUE" + }, + { + "username": "qngyn", + "issue": 4162, + "node id": "IC_kwDOB7-mp869Ipy4", + "id": 3173162168, + "URL": "https://github.com/hackforla/website/issues/4162", + "skills": "SKILLS ISSUE" + }, + { + "username": "quyson", + "issue": 6335, + "node id": "IC_kwDOB7-mp869Qt-w", + "id": 3175276464, + "URL": "https://github.com/hackforla/website/issues/6335", + "skills": "SKILLS ISSUE" + }, + { + "username": "rachelcorawood", + "issue": 7278, + "node id": "IC_kwDOB7-mp869Qt-9", + "id": 3175276477, + "URL": "https://github.com/hackforla/website/issues/7278", + "skills": "SKILLS ISSUE" + }, + { + "username": "rafaelferreiranvr", + "issue": 7979, + "node id": "IC_kwDOB7-mp869Qt-i", + "id": 3175276450, + "URL": "https://github.com/hackforla/website/issues/7979", + "skills": "SKILLS ISSUE" + }, + { + "username": "rafaelirangel", + "issue": 5227, + "node id": "IC_kwDOB7-mp869Ipy0", + "id": 3173162164, + "URL": "https://github.com/hackforla/website/issues/5227", + "skills": "SKILLS ISSUE" + }, + { + "username": "Rajwinder35", + "issue": 7220, + "node id": "IC_kwDOB7-mp869Qt-l", + "id": 3175276453, + "URL": "https://github.com/hackforla/website/issues/7220", + "skills": "SKILLS ISSUE" + }, + { + "username": "RamchandraReddy07", + "issue": 7976, + "node id": "IC_kwDOB7-mp869IpzU", + "id": 3173162196, + "URL": "https://github.com/hackforla/website/issues/7976", + "skills": "SKILLS ISSUE" + }, + { + "username": "ramitaarora", + "issue": 6248, + "node id": "IC_kwDOB7-mp869Qt_M", + "id": 3175276492, + "URL": "https://github.com/hackforla/website/issues/6248", + "skills": "SKILLS ISSUE" + }, + { + "username": "rankdjr", + "issue": 4978, + "node id": "IC_kwDOB7-mp869IpzH", + "id": 3173162183, + "URL": "https://github.com/hackforla/website/issues/4978", + "skills": "SKILLS ISSUE" + }, + { + "username": "raswani2023", + "issue": 3273, + "node id": "IC_kwDOB7-mp869Qt-4", + "id": 3175276472, + "URL": "https://github.com/hackforla/website/issues/3273", + "skills": "SKILLS ISSUE" + }, + { + "username": "raviteja4117", + "issue": 4999, + "node id": "IC_kwDOB7-mp869Qt_H", + "id": 3175276487, + "URL": "https://github.com/hackforla/website/issues/4999", + "skills": "SKILLS ISSUE" + }, + { + "username": "rdhmdhl", + "issue": 4623, + "node id": "IC_kwDOB7-mp869IpzL", + "id": 3173162187, + "URL": "https://github.com/hackforla/website/issues/4623", + "skills": "SKILLS ISSUE" + }, + { + "username": "rdpfeifle", + "issue": 3789, + "node id": "IC_kwDOB7-mp869IpzR", + "id": 3173162193, + "URL": "https://github.com/hackforla/website/issues/3789", + "skills": "SKILLS ISSUE" + }, + { + "username": "regular-polygon", + "issue": 6605, + "node id": "IC_kwDOB7-mp869Qt-y", + "id": 3175276466, + "URL": "https://github.com/hackforla/website/issues/6605", + "skills": "SKILLS ISSUE" + }, + { + "username": "revforyou", + "issue": 8293, + "node id": "IC_kwDOB7-mp87BGmzG", + "id": "", + "URL": "https://github.com/hackforla/website/issues/8293", + "skills": "SKILLS ISSUE" + }, + { + "username": "rhiannab", + "issue": 2703, + "node id": "IC_kwDOB7-mp869IpzF", + "id": 3173162181, + "URL": "https://github.com/hackforla/website/issues/2703", + "skills": "SKILLS ISSUE" + }, + { + "username": "rhoneriver", + "issue": 7842, + "node id": "IC_kwDOB7-mp869IpzM", + "id": 3173162188, + "URL": "https://github.com/hackforla/website/issues/7842", + "skills": "SKILLS ISSUE" + }, + { + "username": "richardmundyiii", + "issue": 4170, + "node id": "IC_kwDOB7-mp869Qt-u", + "id": 3175276462, + "URL": "https://github.com/hackforla/website/issues/4170", + "skills": "SKILLS ISSUE" + }, + { + "username": "Richey24", + "issue": 3121, + "node id": "IC_kwDOB7-mp869Qt_I", + "id": 3175276488, + "URL": "https://github.com/hackforla/website/issues/3121", + "skills": "SKILLS ISSUE" + }, + { + "username": "riddle015", + "issue": 2701, + "node id": "IC_kwDOB7-mp869Qt-2", + "id": 3175276470, + "URL": "https://github.com/hackforla/website/issues/2701", + "skills": "SKILLS ISSUE" + }, + { + "username": "Ris345", + "issue": 4997, + "node id": "IC_kwDOB7-mp869Qt-z", + "id": 3175276467, + "URL": "https://github.com/hackforla/website/issues/4997", + "skills": "SKILLS ISSUE" + }, + { + "username": "rleeoriginal", + "issue": 8095, + "node id": "IC_kwDOB7-mp869IpzV", + "id": 3173162197, + "URL": "https://github.com/hackforla/website/issues/8095", + "skills": "SKILLS ISSUE" + }, + { + "username": "RobenusW", + "issue": 3190, + "node id": "IC_kwDOB7-mp869Qt_B", + "id": 3175276481, + "URL": "https://github.com/hackforla/website/issues/3190", + "skills": "SKILLS ISSUE" + }, + { + "username": "robert-f-ruff", + "issue": 6952, + "node id": "IC_kwDOB7-mp869Qt-g", + "id": 3175276448, + "URL": "https://github.com/hackforla/website/issues/6952", + "skills": "SKILLS ISSUE" + }, + { + "username": "robert-g-rodriguez", + "issue": 5214, + "node id": "IC_kwDOB7-mp869Qt_G", + "id": 3175276486, + "URL": "https://github.com/hackforla/website/issues/5214", + "skills": "SKILLS ISSUE" + }, + { + "username": "robert-loo", + "issue": 4164, + "node id": "IC_kwDOB7-mp869Qt-r", + "id": 3175276459, + "URL": "https://github.com/hackforla/website/issues/4164", + "skills": "SKILLS ISSUE" + }, + { + "username": "robertnjenga", + "issue": 5485, + "node id": "IC_kwDOB7-mp869Qt_T", + "id": 3175276499, + "URL": "https://github.com/hackforla/website/issues/5485", + "skills": "SKILLS ISSUE" + }, + { + "username": "RodgerLugo", + "issue": 7949, + "node id": "IC_kwDOB7-mp869Qt_b", + "id": 3175276507, + "URL": "https://github.com/hackforla/website/issues/7949", + "skills": "SKILLS ISSUE" + }, + { + "username": "rogerioduenas", + "issue": 7884, + "node id": "IC_kwDOB7-mp869Qt-8", + "id": 3175276476, + "URL": "https://github.com/hackforla/website/issues/7884", + "skills": "SKILLS ISSUE" + }, + { + "username": "rolzar", + "issue": 3571, + "node id": "IC_kwDOB7-mp869Qt-o", + "id": 3175276456, + "URL": "https://github.com/hackforla/website/issues/3571", + "skills": "SKILLS ISSUE" + }, + { + "username": "romainyvernes", + "issue": 5608, + "node id": "IC_kwDOB7-mp869Qt-5", + "id": 3175276473, + "URL": "https://github.com/hackforla/website/issues/5608", + "skills": "SKILLS ISSUE" + }, + { + "username": "ronaldpaek", + "issue": 4074, + "node id": "IC_kwDOB7-mp869Qt_D", + "id": 3175276483, + "URL": "https://github.com/hackforla/website/issues/4074", + "skills": "SKILLS ISSUE" + }, + { + "username": "roslynwythe", + "issue": 3640, + "node id": "IC_kwDOB7-mp869IoIO", + "id": 3173153842, + "URL": "https://github.com/hackforla/website/issues/3640", + "skills": "SKILLS ISSUE" + }, + { + "username": "roychan1", + "issue": 5781, + "node id": "IC_kwDOB7-mp869Qt-p", + "id": 3175276457, + "URL": "https://github.com/hackforla/website/issues/5781", + "skills": "SKILLS ISSUE" + }, + { + "username": "RuchiUp", + "issue": 7974, + "node id": "IC_kwDOB7-mp869Qt-s", + "id": 3175276460, + "URL": "https://github.com/hackforla/website/issues/7974", + "skills": "SKILLS ISSUE" + }, + { + "username": "Ruizmichael", + "issue": 6529, + "node id": "IC_kwDOB7-mp869Qt_J", + "id": 3175276489, + "URL": "https://github.com/hackforla/website/issues/6529", + "skills": "SKILLS ISSUE" + }, + { + "username": "RyanCahela", + "issue": 2999, + "node id": "IC_kwDOB7-mp869Qt-n", + "id": 3175276455, + "URL": "https://github.com/hackforla/website/issues/2999", + "skills": "SKILLS ISSUE" + }, + { + "username": "ryanfkeller", + "issue": 8136, + "node id": "IC_kwDOB7-mp869Qt-3", + "id": 3175276471, + "URL": "https://github.com/hackforla/website/issues/8136", + "skills": "SKILLS ISSUE" + }, + { + "username": "RyanGehris", + "issue": 3913, + "node id": "IC_kwDOB7-mp869Qt_A", + "id": 3175276480, + "URL": "https://github.com/hackforla/website/issues/3913", + "skills": "SKILLS ISSUE" + }, + { + "username": "ryantpham", + "issue": 2749, + "node id": "IC_kwDOB7-mp869Qt-m", + "id": 3175276454, + "URL": "https://github.com/hackforla/website/issues/2749", + "skills": "SKILLS ISSUE" + }, + { + "username": "sacamp", + "issue": 3250, + "node id": "IC_kwDOB7-mp869IEGx", + "id": 3173007793, + "URL": "https://github.com/hackforla/website/issues/3250", + "skills": "SKILLS ISSUE" + }, + { + "username": "Sah11-0", + "issue": 7887, + "node id": "IC_kwDOB7-mp869IEF1", + "id": 3173007733, + "URL": "https://github.com/hackforla/website/issues/7887", + "skills": "SKILLS ISSUE" + }, + { + "username": "sahithm06", + "issue": 7033, + "node id": "IC_kwDOB7-mp869IEFe", + "id": 3173007710, + "URL": "https://github.com/hackforla/website/issues/7033", + "skills": "SKILLS ISSUE" + }, + { + "username": "sainarasimhav37", + "issue": 6951, + "node id": "IC_kwDOB7-mp869IEGe", + "id": 3173007774, + "URL": "https://github.com/hackforla/website/issues/6951", + "skills": "SKILLS ISSUE" + }, + { + "username": "saiteja-siddana", + "issue": 7218, + "node id": "IC_kwDOB7-mp869IEFZ", + "id": 3173007705, + "URL": "https://github.com/hackforla/website/issues/7218", + "skills": "SKILLS ISSUE" + }, + { + "username": "SakethMylavarapu2602", + "issue": 7032, + "node id": "IC_kwDOB7-mp869IEFa", + "id": 3173007706, + "URL": "https://github.com/hackforla/website/issues/7032", + "skills": "SKILLS ISSUE" + }, + { + "username": "sakibian", + "issue": 5483, + "node id": "IC_kwDOB7-mp869IEFm", + "id": 3173007718, + "URL": "https://github.com/hackforla/website/issues/5483", + "skills": "SKILLS ISSUE" + }, + { + "username": "samuelkhong", + "issue": 6083, + "node id": "IC_kwDOB7-mp869IEFi", + "id": 3173007714, + "URL": "https://github.com/hackforla/website/issues/6083", + "skills": "SKILLS ISSUE" + }, + { + "username": "samuelusc", + "issue": 6122, + "node id": "IC_kwDOB7-mp869IEGt", + "id": 3173007789, + "URL": "https://github.com/hackforla/website/issues/6122", + "skills": "SKILLS ISSUE" + }, + { + "username": "sandarshp", + "issue": 3253, + "node id": "IC_kwDOB7-mp869IEFb", + "id": 3173007707, + "URL": "https://github.com/hackforla/website/issues/3253", + "skills": "SKILLS ISSUE" + }, + { + "username": "sandavid11", + "issue": 8096, + "node id": "IC_kwDOB7-mp869IEF2", + "id": 3173007734, + "URL": "https://github.com/hackforla/website/issues/8096", + "skills": "SKILLS ISSUE" + }, + { + "username": "santi-jose", + "issue": 8189, + "node id": "IC_kwDOB7-mp869IEFy", + "id": 3173007730, + "URL": "https://github.com/hackforla/website/issues/8189", + "skills": "SKILLS ISSUE" + }, + { + "username": "santiseccovidal", + "issue": 6426, + "node id": "IC_kwDOB7-mp869IEGp", + "id": 3173007785, + "URL": "https://github.com/hackforla/website/issues/6426", + "skills": "SKILLS ISSUE" + }, + { + "username": "sarahgraup", + "issue": 8129, + "node id": "IC_kwDOB7-mp869IEFl", + "id": 3173007717, + "URL": "https://github.com/hackforla/website/issues/8129", + "skills": "SKILLS ISSUE" + }, + { + "username": "Saranjen", + "issue": 5079, + "node id": "IC_kwDOB7-mp869IEFj", + "id": 3173007715, + "URL": "https://github.com/hackforla/website/issues/5079", + "skills": "SKILLS ISSUE" + }, + { + "username": "Satenik-Ba", + "issue": 3707, + "node id": "IC_kwDOB7-mp869IEGI", + "id": 3173007752, + "URL": "https://github.com/hackforla/website/issues/3707", + "skills": "SKILLS ISSUE" + }, + { + "username": "sayeedkhannabil", + "issue": 5481, + "node id": "IC_kwDOB7-mp869IEFq", + "id": 3173007722, + "URL": "https://github.com/hackforla/website/issues/5481", + "skills": "SKILLS ISSUE" + }, + { + "username": "scarter31191", + "issue": 2937, + "node id": "IC_kwDOB7-mp869IEF0", + "id": 3173007732, + "URL": "https://github.com/hackforla/website/issues/2937", + "skills": "SKILLS ISSUE" + }, + { + "username": "Scienstein2497", + "issue": 8271, + "node id": "IC_kwDOB7-mp86_ptcE", + "id": 3215382276, + "URL": "https://github.com/hackforla/website/issues/8271", + "skills": "SKILLS ISSUE" + }, + { + "username": "scorbz9", + "issue": 3148, + "node id": "IC_kwDOB7-mp869IEFz", + "id": 3173007731, + "URL": "https://github.com/hackforla/website/issues/3148", + "skills": "SKILLS ISSUE" + }, + { + "username": "se7en-illa", + "issue": 4314, + "node id": "IC_kwDOB7-mp869IzKr", + "id": 3173200555, + "URL": "https://github.com/hackforla/website/issues/4314", + "skills": "SKILLS ISSUE" + }, + { + "username": "seantokuzo", + "issue": 3242, + "node id": "IC_kwDOB7-mp869IEF_", + "id": 3173007743, + "URL": "https://github.com/hackforla/website/issues/3242", + "skills": "SKILLS ISSUE" + }, + { + "username": "Sebster3", + "issue": 4166, + "node id": "IC_kwDOB7-mp869IEF9", + "id": 3173007741, + "URL": "https://github.com/hackforla/website/issues/4166", + "skills": "SKILLS ISSUE" + }, + { + "username": "segbuniwe", + "issue": 5358, + "node id": "IC_kwDOB7-mp869IEGT", + "id": 3173007763, + "URL": "https://github.com/hackforla/website/issues/5358", + "skills": "SKILLS ISSUE" + }, + { + "username": "SeyiAkinwale", + "issue": 4624, + "node id": "IC_kwDOB7-mp869IEFn", + "id": 3173007719, + "URL": "https://github.com/hackforla/website/issues/4624", + "skills": "SKILLS ISSUE" + }, + { + "username": "ShamaaTabassum", + "issue": 6728, + "node id": "IC_kwDOB7-mp869IEFd", + "id": 3173007709, + "URL": "https://github.com/hackforla/website/issues/6728", + "skills": "SKILLS ISSUE" + }, + { + "username": "shantanushende", + "issue": 2560, + "node id": "IC_kwDOB7-mp869IEFf", + "id": 3173007711, + "URL": "https://github.com/hackforla/website/issues/2560", + "skills": "SKILLS ISSUE" + }, + { + "username": "ShatteredArrow", + "issue": 5064, + "node id": "IC_kwDOB7-mp869IEFo", + "id": 3173007720, + "URL": "https://github.com/hackforla/website/issues/5064", + "skills": "SKILLS ISSUE" + }, + { + "username": "ShattsIllia", + "issue": 5228, + "node id": "IC_kwDOB7-mp869IEGn", + "id": 3173007783, + "URL": "https://github.com/hackforla/website/issues/5228", + "skills": "SKILLS ISSUE" + }, + { + "username": "shavinski", + "issue": 5220, + "node id": "IC_kwDOB7-mp869IEGA", + "id": 3173007744, + "URL": "https://github.com/hackforla/website/issues/5220", + "skills": "SKILLS ISSUE" + }, + { + "username": "sheehanrobb", + "issue": 5356, + "node id": "IC_kwDOB7-mp869IEGj", + "id": 3173007779, + "URL": "https://github.com/hackforla/website/issues/5356", + "skills": "SKILLS ISSUE" + }, + { + "username": "sherririllingux", + "issue": 2950, + "node id": "IC_kwDOB7-mp869IEF6", + "id": 3173007738, + "URL": "https://github.com/hackforla/website/issues/2950", + "skills": "SKILLS ISSUE" + }, + { + "username": "Shikha0428", + "issue": 5909, + "node id": "IC_kwDOB7-mp869IEFt", + "id": 3173007725, + "URL": "https://github.com/hackforla/website/issues/5909", + "skills": "SKILLS ISSUE" + }, + { + "username": "shi-kuang", + "issue": 6344, + "node id": "IC_kwDOB7-mp869IEFu", + "id": 3173007726, + "URL": "https://github.com/hackforla/website/issues/6344", + "skills": "SKILLS ISSUE" + }, + { + "username": "shimahoush", + "issue": 3412, + "node id": "IC_kwDOB7-mp869IEGd", + "id": 3173007773, + "URL": "https://github.com/hackforla/website/issues/3412", + "skills": "SKILLS ISSUE" + }, + { + "username": "ShivaniDesai1012", + "issue": 7977, + "node id": "IC_kwDOB7-mp869IEFk", + "id": 3173007716, + "URL": "https://github.com/hackforla/website/issues/7977", + "skills": "SKILLS ISSUE" + }, + { + "username": "siddhanthiyer-99", + "issue": 4968, + "node id": "IC_kwDOB7-mp869IEF8", + "id": 3173007740, + "URL": "https://github.com/hackforla/website/issues/4968", + "skills": "SKILLS ISSUE" + }, + { + "username": "siddharthpvaghela", + "issue": 7066, + "node id": "IC_kwDOB7-mp869IEFp", + "id": 3173007721, + "URL": "https://github.com/hackforla/website/issues/7066", + "skills": "SKILLS ISSUE" + }, + { + "username": "sijiapitts", + "issue": 3071, + "node id": "IC_kwDOB7-mp869IEF5", + "id": 3173007737, + "URL": "https://github.com/hackforla/website/issues/3071", + "skills": "SKILLS ISSUE" + }, + { + "username": "sisi-in-tech", + "issue": 4982, + "node id": "IC_kwDOB7-mp869IEGD", + "id": 3173007747, + "URL": "https://github.com/hackforla/website/issues/4982", + "skills": "SKILLS ISSUE" + }, + { + "username": "Six5pAdes", + "issue": 7925, + "node id": "IC_kwDOB7-mp869IEF4", + "id": 3173007736, + "URL": "https://github.com/hackforla/website/issues/7925", + "skills": "SKILLS ISSUE" + }, + { + "username": "siyunfeng", + "issue": 7575, + "node id": "IC_kwDOB7-mp869IEGr", + "id": 3173007787, + "URL": "https://github.com/hackforla/website/issues/7575", + "skills": "SKILLS ISSUE" + }, + { + "username": "Sk-223", + "issue": 7633, + "node id": "IC_kwDOB7-mp869IEGU", + "id": 3173007764, + "URL": "https://github.com/hackforla/website/issues/7633", + "skills": "SKILLS ISSUE" + }, + { + "username": "skarakaya1", + "issue": 2975, + "node id": "IC_kwDOB7-mp869IEFv", + "id": 3173007727, + "URL": "https://github.com/hackforla/website/issues/2975", + "skills": "SKILLS ISSUE" + }, + { + "username": "Skydodle", + "issue": 3609, + "node id": "IC_kwDOB7-mp869IEGS", + "id": 3173007762, + "URL": "https://github.com/hackforla/website/issues/3609", + "skills": "SKILLS ISSUE" + }, + { + "username": "sleepyyuu", + "issue": 5607, + "node id": "IC_kwDOB7-mp869IEFx", + "id": 3173007729, + "URL": "https://github.com/hackforla/website/issues/5607", + "skills": "SKILLS ISSUE" + }, + { + "username": "smendoza07", + "issue": 6714, + "node id": "IC_kwDOB7-mp869IEGY", + "id": 3173007768, + "URL": "https://github.com/hackforla/website/issues/6714", + "skills": "SKILLS ISSUE" + }, + { + "username": "snigbehara", + "issue": 3167, + "node id": "IC_kwDOB7-mp869IEF3", + "id": 3173007735, + "URL": "https://github.com/hackforla/website/issues/3167", + "skills": "SKILLS ISSUE" + }, + { + "username": "soleilherring", + "issue": 4610, + "node id": "IC_kwDOB7-mp869IEGC", + "id": 3173007746, + "URL": "https://github.com/hackforla/website/issues/4610", + "skills": "SKILLS ISSUE" + }, + { + "username": "sonalinajera", + "issue": 3570, + "node id": "IC_kwDOB7-mp869IEGO", + "id": 3173007758, + "URL": "https://github.com/hackforla/website/issues/3570", + "skills": "SKILLS ISSUE" + }, + { + "username": "sonjand", + "issue": 7825, + "node id": "IC_kwDOB7-mp869IEGV", + "id": 3173007765, + "URL": "https://github.com/hackforla/website/issues/7825", + "skills": "SKILLS ISSUE" + }, + { + "username": "sophia-bui", + "issue": 5350, + "node id": "IC_kwDOB7-mp869IEFs", + "id": 3173007724, + "URL": "https://github.com/hackforla/website/issues/5350", + "skills": "SKILLS ISSUE" + }, + { + "username": "sornekian", + "issue": 5773, + "node id": "IC_kwDOB7-mp869IEF-", + "id": 3173007742, + "URL": "https://github.com/hackforla/website/issues/5773", + "skills": "SKILLS ISSUE" + }, + { + "username": "Sparky-code", + "issue": 2783, + "node id": "IC_kwDOB7-mp869Iyne", + "id": 3173198302, + "URL": "https://github.com/hackforla/website/issues/2783", + "skills": "SKILLS ISSUE" + }, + { + "username": "srandolph2", + "issue": 3971, + "node id": "IC_kwDOB7-mp869IEGP", + "id": 3173007759, + "URL": "https://github.com/hackforla/website/issues/3971", + "skills": "SKILLS ISSUE" + }, + { + "username": "srinipandiyan", + "issue": 7572, + "node id": "IC_kwDOB7-mp869IEGi", + "id": 3173007778, + "URL": "https://github.com/hackforla/website/issues/7572", + "skills": "SKILLS ISSUE" + }, + { + "username": "srivikas777", + "issue": 7024, + "node id": "IC_kwDOB7-mp869IEGJ", + "id": 3173007753, + "URL": "https://github.com/hackforla/website/issues/7024", + "skills": "SKILLS ISSUE" + }, + { + "username": "SteeRevo", + "issue": 6245, + "node id": "IC_kwDOB7-mp869IEGq", + "id": 3173007786, + "URL": "https://github.com/hackforla/website/issues/6245", + "skills": "SKILLS ISSUE" + }, + { + "username": "Stephen-Parent", + "issue": 2531, + "node id": "IC_kwDOB7-mp869IEF7", + "id": 3173007739, + "URL": "https://github.com/hackforla/website/issues/2531", + "skills": "SKILLS ISSUE" + }, + { + "username": "StephenTheDev1001", + "issue": 4328, + "node id": "IC_kwDOB7-mp869IEGv", + "id": 3173007791, + "URL": "https://github.com/hackforla/website/issues/4328", + "skills": "SKILLS ISSUE" + }, + { + "username": "StevenDeng1", + "issue": 7740, + "node id": "IC_kwDOB7-mp869IEGF", + "id": 3173007749, + "URL": "https://github.com/hackforla/website/issues/7740", + "skills": "SKILLS ISSUE" + }, + { + "username": "steven-positive-tran", + "issue": 3826, + "node id": "IC_kwDOB7-mp869IEGg", + "id": 3173007776, + "URL": "https://github.com/hackforla/website/issues/3826", + "skills": "SKILLS ISSUE" + }, + { + "username": "str-xjua24", + "issue": 3605, + "node id": "IC_kwDOB7-mp869IEGQ", + "id": 3173007760, + "URL": "https://github.com/hackforla/website/issues/3605", + "skills": "SKILLS ISSUE" + }, + { + "username": "Sujay-Anantha", + "issue": 7518, + "node id": "IC_kwDOB7-mp869IEGN", + "id": 3173007757, + "URL": "https://github.com/hackforla/website/issues/7518", + "skills": "SKILLS ISSUE" + }, + { + "username": "Suman2795", + "issue": 3553, + "node id": "IC_kwDOB7-mp869IEGo", + "id": 3173007784, + "URL": "https://github.com/hackforla/website/issues/3553", + "skills": "SKILLS ISSUE" + }, + { + "username": "sumerjoshi", + "issue": 8102, + "node id": "IC_kwDOB7-mp869IEGu", + "id": 3173007790, + "URL": "https://github.com/hackforla/website/issues/8102", + "skills": "SKILLS ISSUE" + }, + { + "username": "summerharveyux", + "issue": 2562, + "node id": "IC_kwDOB7-mp869IEGX", + "id": 3173007767, + "URL": "https://github.com/hackforla/website/issues/2562", + "skills": "SKILLS ISSUE" + }, + { + "username": "Swaroopa-Shigli", + "issue": 5347, + "node id": "IC_kwDOB7-mp869IEGc", + "id": 3173007772, + "URL": "https://github.com/hackforla/website/issues/5347", + "skills": "SKILLS ISSUE" + }, + { + "username": "sydneywalcoff", + "issue": 2519, + "node id": "IC_kwDOB7-mp869IEGf", + "id": 3173007775, + "URL": "https://github.com/hackforla/website/issues/2519", + "skills": "SKILLS ISSUE" + }, + { + "username": "SZwerling", + "issue": 3690, + "node id": "IC_kwDOB7-mp869IEGK", + "id": 3173007754, + "URL": "https://github.com/hackforla/website/issues/3690", + "skills": "SKILLS ISSUE" + }, + { + "username": "Tak149", + "issue": 4998, + "node id": "IC_kwDOB7-mp869IEGM", + "id": 3173007756, + "URL": "https://github.com/hackforla/website/issues/4998", + "skills": "SKILLS ISSUE" + }, + { + "username": "tamalatrinh", + "issue": 2654, + "node id": "IC_kwDOB7-mp869IEGs", + "id": 3173007788, + "URL": "https://github.com/hackforla/website/issues/2654", + "skills": "SKILLS ISSUE" + }, + { + "username": "tamara-snyder", + "issue": 7329, + "node id": "IC_kwDOB7-mp869Ix-Y", + "id": 3173195672, + "URL": "https://github.com/hackforla/website/issues/7329", + "skills": "SKILLS ISSUE" + }, + { + "username": "Tarrantul99", + "issue": 6478, + "node id": "IC_kwDOB7-mp869IEGW", + "id": 3173007766, + "URL": "https://github.com/hackforla/website/issues/6478", + "skills": "SKILLS ISSUE" + }, + { + "username": "taylorbeee", + "issue": 6523, + "node id": "IC_kwDOB7-mp869IEGG", + "id": 3173007750, + "URL": "https://github.com/hackforla/website/issues/6523", + "skills": "SKILLS ISSUE" + }, + { + "username": "tejasn14", + "issue": 6880, + "node id": "IC_kwDOB7-mp869IEGZ", + "id": 3173007769, + "URL": "https://github.com/hackforla/website/issues/6880", + "skills": "SKILLS ISSUE" + }, + { + "username": "terrencejihoonjung", + "issue": 6878, + "node id": "IC_kwDOB7-mp869IEGm", + "id": 3173007782, + "URL": "https://github.com/hackforla/website/issues/6878", + "skills": "SKILLS ISSUE" + }, + { + "username": "tesiahwang", + "issue": 4967, + "node id": "IC_kwDOB7-mp869IEGb", + "id": 3173007771, + "URL": "https://github.com/hackforla/website/issues/4967", + "skills": "SKILLS ISSUE" + }, + { + "username": "thecrit", + "issue": 2773, + "node id": "IC_kwDOB7-mp869IEGL", + "id": "", + "URL": "https://github.com/hackforla/website/issues/2773", + "skills": "SKILLS ISSUE" + }, + { + "username": "thedvo", + "issue": 4323, + "node id": "IC_kwDOB7-mp869IEGk", + "id": 3173007780, + "URL": "https://github.com/hackforla/website/issues/4323", + "skills": "SKILLS ISSUE" + }, + { + "username": "TheManTheMythTheGameDev", + "issue": 6946, + "node id": "IC_kwDOB7-mp869IC_B", + "id": 3173003201, + "URL": "https://github.com/hackforla/website/issues/6946", + "skills": "SKILLS ISSUE" + }, + { + "username": "theMorganObject", + "issue": 5209, + "node id": "IC_kwDOB7-mp869IC-7", + "id": 3173003195, + "URL": "https://github.com/hackforla/website/issues/5209", + "skills": "SKILLS ISSUE" + }, + { + "username": "theogguu", + "issue": 7516, + "node id": "IC_kwDOB7-mp869IC_c", + "id": 3173003228, + "URL": "https://github.com/hackforla/website/issues/7516", + "skills": "SKILLS ISSUE" + }, + { + "username": "thinhmai1027", + "issue": 4334, + "node id": "IC_kwDOB7-mp869IC-8", + "id": 3173003196, + "URL": "https://github.com/hackforla/website/issues/4334", + "skills": "SKILLS ISSUE" + }, + { + "username": "Thinking-Panda", + "issue": 3916, + "node id": "IC_kwDOB7-mp869IDAC", + "id": 3173003266, + "URL": "https://github.com/hackforla/website/issues/3916", + "skills": "SKILLS ISSUE" + }, + { + "username": "thisisdientran", + "issue": 6116, + "node id": "IC_kwDOB7-mp869IC_T", + "id": 3173003219, + "URL": "https://github.com/hackforla/website/issues/6116", + "skills": "SKILLS ISSUE" + }, + { + "username": "this-journey", + "issue": 4976, + "node id": "IC_kwDOB7-mp869IC-6", + "id": 3173003194, + "URL": "https://github.com/hackforla/website/issues/4976", + "skills": "SKILLS ISSUE" + }, + { + "username": "thomasnguyens", + "issue": 7625, + "node id": "IC_kwDOB7-mp869IC_D", + "id": 3173003203, + "URL": "https://github.com/hackforla/website/issues/7625", + "skills": "SKILLS ISSUE" + }, + { + "username": "tiffchannn", + "issue": 5071, + "node id": "IC_kwDOB7-mp869IC_V", + "id": 3173003221, + "URL": "https://github.com/hackforla/website/issues/5071", + "skills": "SKILLS ISSUE" + }, + { + "username": "TJameel120", + "issue": 4637, + "node id": "IC_kwDOB7-mp869IC_U", + "id": 3173003220, + "URL": "https://github.com/hackforla/website/issues/4637", + "skills": "SKILLS ISSUE" + }, + { + "username": "tkozek", + "issue": 5225, + "node id": "IC_kwDOB7-mp869IC_I", + "id": 3173003208, + "URL": "https://github.com/hackforla/website/issues/5225", + "skills": "SKILLS ISSUE" + }, + { + "username": "tkubota31", + "issue": 4964, + "node id": "IC_kwDOB7-mp869IC-9", + "id": 3173003197, + "URL": "https://github.com/hackforla/website/issues/4964", + "skills": "SKILLS ISSUE" + }, + { + "username": "Tomomi-K1", + "issue": 4971, + "node id": "IC_kwDOB7-mp869IC_N", + "id": 3173003213, + "URL": "https://github.com/hackforla/website/issues/4971", + "skills": "SKILLS ISSUE" + }, + { + "username": "tony1ee", + "issue": 6606, + "node id": "IC_kwDOB7-mp869IC_7", + "id": 3173003259, + "URL": "https://github.com/hackforla/website/issues/6606", + "skills": "SKILLS ISSUE" + }, + { + "username": "Tony-Hsieh", + "issue": 4621, + "node id": "IC_kwDOB7-mp869IC_M", + "id": 3173003212, + "URL": "https://github.com/hackforla/website/issues/4621", + "skills": "SKILLS ISSUE" + }, + { + "username": "tonyvang", + "issue": 5486, + "node id": "IC_kwDOB7-mp869IC-_", + "id": 3173003199, + "URL": "https://github.com/hackforla/website/issues/5486", + "skills": "SKILLS ISSUE" + }, + { + "username": "trca831", + "issue": 8029, + "node id": "IC_kwDOB7-mp869IC_R", + "id": 3173003217, + "URL": "https://github.com/hackforla/website/issues/8029", + "skills": "SKILLS ISSUE" + }, + { + "username": "trimakichan", + "issue": 7627, + "node id": "IC_kwDOB7-mp869IC_C", + "id": 3173003202, + "URL": "https://github.com/hackforla/website/issues/7627", + "skills": "SKILLS ISSUE" + }, + { + "username": "trishajjohnson", + "issue": 3049, + "node id": "IC_kwDOB7-mp869IC_P", + "id": 3173003215, + "URL": "https://github.com/hackforla/website/issues/3049", + "skills": "SKILLS ISSUE" + }, + { + "username": "troyfreed", + "issue": 6943, + "node id": "IC_kwDOB7-mp869IC_G", + "id": 3173003206, + "URL": "https://github.com/hackforla/website/issues/6943", + "skills": "SKILLS ISSUE" + }, + { + "username": "trz832", + "issue": 3244, + "node id": "IC_kwDOB7-mp869IC_S", + "id": 3173003218, + "URL": "https://github.com/hackforla/website/issues/3244", + "skills": "SKILLS ISSUE" + }, + { + "username": "tunglinn", + "issue": 3271, + "node id": "IC_kwDOB7-mp869IC_p", + "id": 3173003241, + "URL": "https://github.com/hackforla/website/issues/3271", + "skills": "SKILLS ISSUE" + }, + { + "username": "t-will-gillis", + "issue": 3613, + "node id": "IC_kwDOB7-mp87BJfKt", + "id": "", + "URL": "https://github.com/hackforla/website/issues/3613", + "skills": "SKILLS ISSUE" + }, + { + "username": "typingtrex", + "issue": 5872, + "node id": "IC_kwDOB7-mp869IC_W", + "id": 3173003222, + "URL": "https://github.com/hackforla/website/issues/5872", + "skills": "SKILLS ISSUE" + }, + { + "username": "Unity7", + "issue": 3510, + "node id": "IC_kwDOB7-mp869IC__", + "id": 3173003263, + "URL": "https://github.com/hackforla/website/issues/3510", + "skills": "SKILLS ISSUE" + }, + { + "username": "urvishp13", + "issue": 6611, + "node id": "IC_kwDOB7-mp869IC_a", + "id": 3173003226, + "URL": "https://github.com/hackforla/website/issues/6611", + "skills": "SKILLS ISSUE" + }, + { + "username": "usaboo", + "issue": 2748, + "node id": "IC_kwDOB7-mp869IC_o", + "id": 3173003240, + "URL": "https://github.com/hackforla/website/issues/2748", + "skills": "SKILLS ISSUE" + }, + { + "username": "vaisali89", + "issue": 3239, + "node id": "IC_kwDOB7-mp869IC_J", + "id": 3173003209, + "URL": "https://github.com/hackforla/website/issues/3239", + "skills": "SKILLS ISSUE" + }, + { + "username": "valdezg", + "issue": 7886, + "node id": "IC_kwDOB7-mp869IC_O", + "id": 3173003214, + "URL": "https://github.com/hackforla/website/issues/7886", + "skills": "SKILLS ISSUE" + }, + { + "username": "vanessasinam", + "issue": 6531, + "node id": "IC_kwDOB7-mp869IC_n", + "id": 3173003239, + "URL": "https://github.com/hackforla/website/issues/6531", + "skills": "SKILLS ISSUE" + }, + { + "username": "vanessavun", + "issue": 3914, + "node id": "IC_kwDOB7-mp869IC_g", + "id": 3173003232, + "URL": "https://github.com/hackforla/website/issues/3914", + "skills": "SKILLS ISSUE" + }, + { + "username": "vanyanv", + "issue": 4630, + "node id": "IC_kwDOB7-mp869IC_H", + "id": 3173003207, + "URL": "https://github.com/hackforla/website/issues/4630", + "skills": "SKILLS ISSUE" + }, + { + "username": "varyad", + "issue": 7970, + "node id": "IC_kwDOB7-mp869IC_A", + "id": 3173003200, + "URL": "https://github.com/hackforla/website/issues/7970", + "skills": "SKILLS ISSUE" + }, + { + "username": "vincendp", + "issue": 6337, + "node id": "IC_kwDOB7-mp869IC_i", + "id": 3173003234, + "URL": "https://github.com/hackforla/website/issues/6337", + "skills": "SKILLS ISSUE" + }, + { + "username": "vincentdang", + "issue": 3830, + "node id": "IC_kwDOB7-mp869IC_2", + "id": 3173003254, + "URL": "https://github.com/hackforla/website/issues/3830", + "skills": "SKILLS ISSUE" + }, + { + "username": "Vinny02", + "issue": 5076, + "node id": "IC_kwDOB7-mp869IC_Z", + "id": 3173003225, + "URL": "https://github.com/hackforla/website/issues/5076", + "skills": "SKILLS ISSUE" + }, + { + "username": "vivvvnguyen", + "issue": 5870, + "node id": "IC_kwDOB7-mp869IC_E", + "id": 3173003204, + "URL": "https://github.com/hackforla/website/issues/5870", + "skills": "SKILLS ISSUE" + }, + { + "username": "vmaineng", + "issue": 3683, + "node id": "IC_kwDOB7-mp869IC_9", + "id": 3173003261, + "URL": "https://github.com/hackforla/website/issues/3683", + "skills": "SKILLS ISSUE" + }, + { + "username": "vorleakyek", + "issue": 7339, + "node id": "IC_kwDOB7-mp869IC_f", + "id": 3173003231, + "URL": "https://github.com/hackforla/website/issues/7339", + "skills": "SKILLS ISSUE" + }, + { + "username": "vraer", + "issue": 4071, + "node id": "IC_kwDOB7-mp869IC_Y", + "id": 3173003224, + "URL": "https://github.com/hackforla/website/issues/4071", + "skills": "SKILLS ISSUE" + }, + { + "username": "vzpeopledesign", + "issue": 3409, + "node id": "IC_kwDOB7-mp869IC_q", + "id": 3173003242, + "URL": "https://github.com/hackforla/website/issues/3409", + "skills": "SKILLS ISSUE" + }, + { + "username": "wassimchakib", + "issue": 5224, + "node id": "IC_kwDOB7-mp869IC_X", + "id": 3173003223, + "URL": "https://github.com/hackforla/website/issues/5224", + "skills": "SKILLS ISSUE" + }, + { + "username": "WayneTsai45", + "issue": 4970, + "node id": "IC_kwDOB7-mp869IC_4", + "id": 3173003256, + "URL": "https://github.com/hackforla/website/issues/4970", + "skills": "SKILLS ISSUE" + }, + { + "username": "wendybarrios", + "issue": 3688, + "node id": "IC_kwDOB7-mp869IC_r", + "id": 3173003243, + "URL": "https://github.com/hackforla/website/issues/3688", + "skills": "SKILLS ISSUE" + }, + { + "username": "whitneywind", + "issue": 4717, + "node id": "IC_kwDOB7-mp869IC_t", + "id": 3173003245, + "URL": "https://github.com/hackforla/website/issues/4717", + "skills": "SKILLS ISSUE" + }, + { + "username": "williamzhang73", + "issue": 6957, + "node id": "IC_kwDOB7-mp869IC_d", + "id": 3173003229, + "URL": "https://github.com/hackforla/website/issues/6957", + "skills": "SKILLS ISSUE" + }, + { + "username": "wiltsai", + "issue": 2637, + "node id": "IC_kwDOB7-mp869IC_F", + "id": 3173003205, + "URL": "https://github.com/hackforla/website/issues/2637", + "skills": "SKILLS ISSUE" + }, + { + "username": "wKategianes", + "issue": 4330, + "node id": "IC_kwDOB7-mp869IC_u", + "id": 3173003246, + "URL": "https://github.com/hackforla/website/issues/4330", + "skills": "SKILLS ISSUE" + }, + { + "username": "Wny-Duong", + "issue": 3053, + "node id": "IC_kwDOB7-mp869IC_e", + "id": 3173003230, + "URL": "https://github.com/hackforla/website/issues/3053", + "skills": "SKILLS ISSUE" + }, + { + "username": "wongstephen", + "issue": 5085, + "node id": "IC_kwDOB7-mp869IC_l", + "id": 3173003237, + "URL": "https://github.com/hackforla/website/issues/5085", + "skills": "SKILLS ISSUE" + }, + { + "username": "xewar", + "issue": 4311, + "node id": "IC_kwDOB7-mp869IC_h", + "id": 3173003233, + "URL": "https://github.com/hackforla/website/issues/4311", + "skills": "SKILLS ISSUE" + }, + { + "username": "xnealcarson", + "issue": 7972, + "node id": "IC_kwDOB7-mp869IDAA", + "id": 3173003264, + "URL": "https://github.com/hackforla/website/issues/7972", + "skills": "SKILLS ISSUE" + }, + { + "username": "ychang49265", + "issue": 3711, + "node id": "IC_kwDOB7-mp869IC_m", + "id": 3173003238, + "URL": "https://github.com/hackforla/website/issues/3711", + "skills": "SKILLS ISSUE" + }, + { + "username": "yeskatr", + "issue": 4065, + "node id": "IC_kwDOB7-mp869IC_j", + "id": 3173003235, + "URL": "https://github.com/hackforla/website/issues/4065", + "skills": "SKILLS ISSUE" + }, + { + "username": "yffu", + "issue": 5080, + "node id": "IC_kwDOB7-mp869IC_1", + "id": 3173003253, + "URL": "https://github.com/hackforla/website/issues/5080", + "skills": "SKILLS ISSUE" + }, + { + "username": "ykim25", + "issue": 4649, + "node id": "IC_kwDOB7-mp869IC_0", + "id": 3173003252, + "URL": "https://github.com/hackforla/website/issues/4649", + "skills": "SKILLS ISSUE" + }, + { + "username": "YolandaHaynes", + "issue": 5482, + "node id": "IC_kwDOB7-mp869IC_x", + "id": 3173003249, + "URL": "https://github.com/hackforla/website/issues/5482", + "skills": "SKILLS ISSUE" + }, + { + "username": "youngspark1998", + "issue": 4991, + "node id": "IC_kwDOB7-mp869IC_6", + "id": 3173003258, + "URL": "https://github.com/hackforla/website/issues/4991", + "skills": "SKILLS ISSUE" + }, + { + "username": "yujioshiro", + "issue": 4975, + "node id": "IC_kwDOB7-mp869IC_s", + "id": 3173003244, + "URL": "https://github.com/hackforla/website/issues/4975", + "skills": "SKILLS ISSUE" + }, + { + "username": "zachmyu", + "issue": 6332, + "node id": "IC_kwDOB7-mp869IC_v", + "id": 3173003247, + "URL": "https://github.com/hackforla/website/issues/6332", + "skills": "SKILLS ISSUE" + }, + { + "username": "Zak234", + "issue": 3269, + "node id": "IC_kwDOB7-mp869IDAE", + "id": 3173003268, + "URL": "https://github.com/hackforla/website/issues/3269", + "skills": "SKILLS ISSUE" + }, + { + "username": "Zanderfeldt", + "issue": 6346, + "node id": "IC_kwDOB7-mp869IDAD", + "id": 3173003267, + "URL": "https://github.com/hackforla/website/issues/6346", + "skills": "SKILLS ISSUE" + }, + { + "username": "ziniwang", + "issue": 4638, + "node id": "IC_kwDOB7-mp869IC_-", + "id": 3173003262, + "URL": "https://github.com/hackforla/website/issues/4638", + "skills": "SKILLS ISSUE" + }, + { + "username": "zip-dazie", + "issue": 5721, + "node id": "IC_kwDOB7-mp869IC_z", + "id": 3173003251, + "URL": "https://github.com/hackforla/website/issues/5721", + "skills": "SKILLS ISSUE" + }, + { + "username": "zkamenov", + "issue": 6348, + "node id": "IC_kwDOB7-mp869IC_8", + "id": 3173003260, + "URL": "https://github.com/hackforla/website/issues/6348", + "skills": "SKILLS ISSUE" + }, + { + "username": "zvidmarb", + "issue": 8192, + "node id": "IC_kwDOB7-mp869IC_y", + "id": 3173003250, + "URL": "https://github.com/hackforla/website/issues/8192", + "skills": "SKILLS ISSUE" + }, + { + "username": "zzhoje", + "issue": 2563, + "node id": "IC_kwDOB7-mp869IC_w", + "id": 3173003248, + "URL": "https://github.com/hackforla/website/issues/2563", + "skills": "SKILLS ISSUE" + } +] diff --git a/github-actions/utils/skills-directory.js b/github-actions/utils/skills-directory.js new file mode 100644 index 0000000000..339354506b --- /dev/null +++ b/github-actions/utils/skills-directory.js @@ -0,0 +1,26 @@ +const fs = require('fs'); +const path = require('path'); + +const directoryPath = path.join(__dirname, '_data', 'skills-directory.json'); + +function loadDirectory() { + if (!fs.existsSync(directoryPath)) return {}; + return JSON.parse(fs.readFileSync(directoryPath, 'utf8')); +} + +function saveDirectory(data) { + fs.writeFileSync(directoryPath, JSON.stringify(data, null, 2)); +} + +function lookupSkillsDirectory(eventActor) { + const directory = loadDirectory(); + return directory[eventActor] || null; +} + +function updateSkillsDirectory(eventActor, skillsInfo) { + const directory = loadDirectory(); + directory[eventActor] = skillsInfo; + saveDirectory(directory); +} + +module.exports = { lookupSkillsDirectory, updateSkillsDirectory };