Skip to content

Generate Traffic Stats #164

Generate Traffic Stats

Generate Traffic Stats #164

Workflow file for this run

name: Generate Traffic Stats
on:
schedule:
# runs once a week on sunday
- cron: "55 23 * * 0"
workflow_dispatch:
jobs:
traffic:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
ref: "master"
# Calculates traffic and clones and stores in CSV file
- name: GitHub traffic
uses: sangonzal/repository-traffic-action@v0.1.4
env:
TRAFFIC_ACTION_TOKEN: ${{ secrets.TRAFFIC_ACTION_TOKEN }}
# Commits files to repository
- name: Commit changes
uses: EndBug/add-and-commit@v4
with:
author_name: Santiago Gonzalez
message: "GitHub traffic"
add: "./traffic/*"
ref: "master" # commits to branch "master"