Scrape Data #128
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Scrape Data | |
on: | |
schedule: | |
- cron: "0 1 * * *" # Runs Every Two hour | |
workflow_dispatch: | |
jobs: | |
run-scraper: | |
uses: beckn/leaderboard/.github/workflows/scrapper_for_data_repo.yml@main | |
secrets: | |
GIT_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Pass GITHUB_TOKEN as GIT_ACCESS_TOKEN | |
permissions: | |
issues: read | |
pull-requests: read | |
contents: write | |