Run user-count script daily #7
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: Run user-count script daily | |
on: | |
schedule: | |
- cron: "5 4 * * *" | |
workflow_dispatch: | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
- run: pip install --break-system-packages requests python-dotenv | |
- run: python3 user-count/arkscript-usage.py | |
env: | |
GITHUB_TOKEN: ${{ secrets.WEB_API_TOKEN }} | |
- name: Commit and push | |
shell: bash | |
run: | | |
git config --unset-all http.https://github.com/.extraheader | |
git config user.name "User count bot" | |
git config user.email "" | |
git config remote.origin.url 'https://${{ secrets.GITHUB_TOKEN }}@github.com/ArkScript-lang/stats.git' | |
git add users.json | |
git commit -m "Update stats" | |
git push -u origin master | |