test #10
Workflow file for this run
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 * * *" | |
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: | | |
bash --version | |
./scripts/score 05-03-2024 26-02-2024 | |
- name: Score | |
env: | |
PAT: ${{ secrets.PAT }} | |
shell: bash | |
run: ./scripts/fetch.sh | |
# - 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 }} | |