Skip to content

Download Stats

Download Stats #93

name: Download Stats
on:
schedule:
- cron: "0 12 * * *" # Run daily at 12:00 UTC
workflow_dispatch:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
stats:
if: github.repository == 'different-ai/openwork'
runs-on: blacksmith-4vcpu-ubuntu-2404
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
- name: Run stats script
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
POSTHOG_KEY: ${{ secrets.POSTHOG_KEY }}
POSTHOG_HOST: https://us.i.posthog.com
POSTHOG_LEGACY_EVENT: download
POSTHOG_V2_EVENT: release_asset_snapshot
POSTHOG_DISTINCT_ID: openwork-download
GITHUB_REPO: different-ai/openwork
run: node scripts/stats.mjs
- name: Commit stats
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add STATS.md STATS_V2.md
git diff --staged --quiet || git commit -m "ignore: update download stats $(date -I)"
git push