We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82c7773 commit 7bb48b9Copy full SHA for 7bb48b9
scripts/fetch-sponsors.py
@@ -59,12 +59,12 @@ def save_sponsors_to_file(sponsors_data, filename="docs/public/api/sponsors.json
59
json.dump(sponsors, f, indent=2)
60
61
def main():
62
- github_token = os.getenv("GITHUB_TOKEN")
+ github_token = os.getenv("SPONSORS_TOKEN")
63
if not github_token:
64
raise ValueError("GitHub token is not set in environment variables")
65
66
sponsors_data = fetch_sponsors(github_token)
67
save_sponsors_to_file(sponsors_data)
68
69
if __name__ == "__main__":
70
- main()
+ main()
0 commit comments