Skip to content

GitHub Traffic Metrics #432

GitHub Traffic Metrics

GitHub Traffic Metrics #432

Workflow file for this run

# This workflow initializes a Python environment and executes
# the specified .py file/s at a scheduled time of 12:45am
# each day. In this case the traffic.py file located in the
# /src directory of this repository.
name: GitHub Traffic Metrics
on:
# push:
# branches:
# - main
schedule:
- cron: '45 0 * * *' # Runs at 12:45am UTC every day
jobs:
extract-data:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt # Contains any dependencies that are not part of the Python standard library
- name: Run Python script to extract traffic
env:
TOKEN: ${{ secrets.DATA_TOKEN }}
run: python src/traffic.py # Extract GitHub traffic and append to CSV