Skip to content

Commit 7bb48b9

Browse files
authored
[skip ci] Update fetch-sponsors.py
1 parent 82c7773 commit 7bb48b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/fetch-sponsors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ def save_sponsors_to_file(sponsors_data, filename="docs/public/api/sponsors.json
5959
json.dump(sponsors, f, indent=2)
6060

6161
def main():
62-
github_token = os.getenv("GITHUB_TOKEN")
62+
github_token = os.getenv("SPONSORS_TOKEN")
6363
if not github_token:
6464
raise ValueError("GitHub token is not set in environment variables")
6565

6666
sponsors_data = fetch_sponsors(github_token)
6767
save_sponsors_to_file(sponsors_data)
6868

6969
if __name__ == "__main__":
70-
main()
70+
main()

0 commit comments

Comments
 (0)