Stargazers Map #37
This file contains hidden or 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: Stargazers Map | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # Runs daily at midnight | |
| workflow_dispatch: # Allows you to run it manually | |
| jobs: | |
| build_map: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Generate Stargazers Map | |
| uses: smaranjitghose/stargazer-map@v3 # This is the new, verified action | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| output_path: 'stargazers.svg' # The name of the map image file |