Skip to content

Commit c439a9b

Browse files
authored
.
1 parent 8153647 commit c439a9b

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.github/workflows/fetch-sponsors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ jobs:
3535
3636
- name: Commit and Push Sponsors JSON
3737
run: |
38-
git add json/sponsors.json
38+
git add docs/public/api/sponsors.json
3939
git commit -m "Update Sponsors" || true
4040
git push || true

scripts/fetch-sponsors.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,27 @@
2727
}
2828
}
2929
}
30+
user(login: "MMRLApp") {
31+
sponsorshipsAsMaintainer(activeOnly: false, first: 100) {
32+
nodes {
33+
sponsorEntity {
34+
... on User {
35+
login
36+
avatarUrl
37+
url
38+
}
39+
... on Organization {
40+
login
41+
avatarUrl
42+
url
43+
}
44+
}
45+
tier {
46+
monthlyPriceInCents
47+
}
48+
}
49+
}
50+
}
3051
}
3152
"""
3253

0 commit comments

Comments
 (0)