data-refresh #119
This file contains hidden or 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: data-refresh | |
| # Re-runs the price-enrichment step (~1s) so the snapshot age stays under the | |
| # /api/health 6-hour staleness threshold. Cheap; runs every 15 minutes. | |
| # | |
| # To rebuild the full dataset (pick up new markets), see data-rebuild.yml. | |
| on: | |
| schedule: | |
| - cron: "*/15 * * * *" | |
| workflow_dispatch: {} # manual trigger from the Actions tab | |
| permissions: | |
| contents: write | |
| concurrency: | |
| group: data-refresh | |
| cancel-in-progress: false | |
| jobs: | |
| refresh: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 1 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: Install pipeline deps | |
| run: | | |
| python -m pip install --upgrade pip | |
| # Only what enrich_state.py needs — no SDK, no signing. | |
| pip install requests python-dotenv | |
| - name: Run enrich_state.py | |
| run: python enrich_state.py | |
| - name: Commit if changed | |
| run: | | |
| git config user.name "auspex-bot" | |
| # Use the repo owner's GitHub-attributable noreply so Vercel accepts | |
| # the auto-deploy triggered by this commit. A bare `auspex-bot@…` email | |
| # doesn't map to any GitHub account, and Vercel blocks unverifiable | |
| # authors by default on the Hobby plan. | |
| git config user.email "96061296+gorillachimps@users.noreply.github.com" | |
| if git diff --quiet data/enriched-markets.json; then | |
| echo "No changes — exiting clean." | |
| exit 0 | |
| fi | |
| git add data/enriched-markets.json | |
| git commit -m "data: refresh enriched snapshot ($(date -u +%H:%MZ))" | |
| git push |