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

feature: add contributors react component in the website #163

Merged
merged 10 commits into from
Jan 19, 2024
23 changes: 23 additions & 0 deletions .github/workflows/fetchContributors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Fetch Contributors

on:
schedule:
- cron: "0 0 * * *" # Run every day at midnight

jobs:
fetch-contributors:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "14"

- name: Run Fetch Contributors Script
run: node scripts/fetchContributors.js
env:
ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
Loading