Skip to content

Fetch Stats (Schedule) #1

Fetch Stats (Schedule)

Fetch Stats (Schedule) #1

Workflow file for this run

name: "Fetch Stats (Schedule)"
on:
schedule:
# runs once a week on sunday
- cron: "00 00 * * 0"
workflow_dispatch:
jobs:
# This workflow contains a single job called "downloads"
downloads:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v5
with:
python-version: '3.10'
# Calculates downloads and clones and stores in CSV file
- name: GitHub downloads
run: ./action.py
# Commits files to repository
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: "GitHub downloads"
add: "./github_release_downloads/*"
github_token: ${{ secrets.GITHUB_TOKEN }}