Skip to content

Workflow file for this run

name: Get daily stats
on:
#schedule:
# - cron: "0 0 * * *"
push:
branches: [ "*" ]
jobs:
cron:
runs-on: ubuntu-latest
steps:
- name: Git clone
uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
# - name: Fetch
# env:
# PAT: ${{ secrets.PAT }}
# shell: bash
# run: ./scripts/fetch.sh
- name: Score
env:
PAT: ${{ secrets.PAT }}
shell: bash
run: |
today=$(./scripts/utils/today.sh)
sevenDaysAgo=$(./scripts/utils/sevenDaysAgo.sh)
echo $today
echo $sevenDaysAgo
./scripts/score.sh data/$today data/$sevenDaysAgo
sort -nr score-output > data/"$today"-score
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: GitHub Commit & Push
uses: actions-js/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ steps.extract_branch.outputs.branch }}