Get daily stats #340
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: Get daily stats | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
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 | |
rm score-output | |
- name: Chart | |
env: | |
PAT: ${{ secrets.PAT }} | |
shell: bash | |
run: | | |
today=$(./scripts/utils/today.sh) | |
yesterday=$(./scripts/utils/yesterday.sh) | |
echo $today | |
echo $yesterday | |
./scripts/diffs.sh $today $yesterday > README.md | |
rm today today-nr yesterday yesterday-nr | |
- 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 }} |