Generate Traffic Stats #145
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: 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" |