Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Updated RepoChecker to allow all types of repos #202

Merged
merged 24 commits into from
Jul 11, 2023
Merged
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e1020ea
issue#112 resolved. submitting for review
punyamsingh Jun 14, 2023
d37fb72
issue#112 resolved.
punyamsingh Jun 14, 2023
ef38dd8
profile.tsx added line 59
punyamsingh Jun 14, 2023
6705535
shifted the function & interface to dateUtils.ts
punyamsingh Jun 14, 2023
eb19ed4
shited the function to getContributedRepos.ts
punyamsingh Jun 14, 2023
e6b2687
Update src/popup/pages/profile.tsx
punyamsingh Jun 14, 2023
35c1d60
Update src/utils/getContributedRepos.ts
punyamsingh Jun 14, 2023
b9a1264
Update src/utils/getContributedRepos.ts
punyamsingh Jun 14, 2023
2fecf46
Update src/utils/getContributedRepos.ts
punyamsingh Jun 14, 2023
afefa93
Update src/popup/pages/profile.tsx
punyamsingh Jun 14, 2023
8c6ec1c
Update src/utils/getContributedRepos.ts
punyamsingh Jun 14, 2023
480ed41
removed eslint from the loop
punyamsingh Jun 14, 2023
154156c
add semicolon to pass lint check
diivi Jun 14, 2023
25eadeb
Merge branch 'open-sauced:beta' into beta
punyamsingh Jun 15, 2023
005d5a6
Merge branch 'open-sauced:beta' into beta
punyamsingh Jun 25, 2023
3d2abfc
made the Tools conditional
punyamsingh Jun 25, 2023
760cb24
added trailing comma to home.txt 37 35
punyamsingh Jun 25, 2023
9ecdced
ran "npm run format"
punyamsingh Jun 25, 2023
f50465c
added useRef and made suitable changes
punyamsingh Jun 26, 2023
375235b
Merge branch 'open-sauced:beta' into beta
punyamsingh Jul 5, 2023
d1a9496
removed the dollar sign
punyamsingh Jul 5, 2023
c9db8ad
Changed github repo pattern
punyamsingh Jul 5, 2023
a9ac129
Merge branch 'open-sauced:beta' into beta
punyamsingh Jul 11, 2023
a7934bb
changes the urlmatcherstest file
punyamsingh Jul 11, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/utils/urlMatchers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const isGithubProfilePage = (url: string) => {
};

export const isGithubRepoPage = (url: string) => {
const githubRepoPattern = /github\.com\/[^/]+\/[^/]+$/;
const githubRepoPattern = /github\.com\/[^/]+\/[^/]+/;

return githubRepoPattern.test(url);
};
Expand Down