Skip to content

Instantly share code, notes, and snippets.

View iamarpit-turing's full-sized avatar

Arpit Patidar iamarpit-turing

View GitHub Profile
@iamarpit-turing
iamarpit-turing / updateGithubPR.js
Last active December 31, 2025 22:38
Update PR data in Google sheets
function parseGithubPr(link) {
const match = link.match(/github\.com\/([^\/]+)\/([^\/]+)\/pull\/(\d+)/);
if (!match) return null;
return {
owner: match[1],
repo: match[2],
prNumber: match[3]
};
}