Skip to content

Commit c27aed8

Browse files
committed
Change repository rank condition
1 parent 90b4f13 commit c27aed8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Schemas/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const queryUserPullRequest = `
4343
export const queryUserRepository = `
4444
query userInfo($username: String!) {
4545
user(login: $username) {
46-
repositories(first: 100, ownerAffiliations: OWNER, orderBy: {direction: DESC, field: STARGAZERS}) {
46+
repositories(first: 50, ownerAffiliations: OWNER, orderBy: {direction: DESC, field: STARGAZERS}) {
4747
totalCount
4848
nodes {
4949
languages(first: 3, orderBy: {direction:DESC, field: SIZE}) {

src/trophy.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -573,22 +573,22 @@ export class TotalRepositoryTrophy extends Trophy {
573573
new RankCondition(
574574
RANK.SSS,
575575
"God Repo Creator",
576-
100,
576+
50,
577577
),
578578
new RankCondition(
579579
RANK.SS,
580580
"Deep Repo Creator",
581-
90,
581+
45,
582582
),
583583
new RankCondition(
584584
RANK.S,
585585
"Super Repo Creator",
586-
80,
586+
40,
587587
),
588588
new RankCondition(
589589
RANK.AAA,
590590
"Ultra Repo Creator",
591-
50,
591+
35,
592592
),
593593
new RankCondition(
594594
RANK.AA,

0 commit comments

Comments
 (0)