Scheduled Stats Extraction From GitHub #106
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: Scheduled Stats Extraction From GitHub | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 5 * * *' | |
jobs: | |
get_stats: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update Stats | |
uses: introlab/github-stats-action@v1 | |
with: | |
github-stats-token: ${{ secrets.STATS_TOKEN }} | |
google-application-credentials: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} | |
spreadsheet-id: ${{ secrets.SPREADSHEET_ID }} |