Skip to content

Refresh all sources #939

Refresh all sources

Refresh all sources #939

Workflow file for this run

name: Refresh all sources
on:
schedule:
- cron: '0 4 * * *' # every day at 4 in the morning
workflow_dispatch:
jobs:
refresh:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- name: Set up Playwright
run: bunx playwright install chromium
- name: Refresh list
uses: nick-fields/retry@v2
with:
timeout_minutes: 5
max_attempts: 3
command: bun run crawl
- name: Raise a PR if files have changed
id: cpr
uses: peter-evans/create-pull-request@v4
with:
add-paths: |
data/*
- name: Enable Pull Request Automerge
if: steps.cpr.outputs.pull-request-operation == 'created'
run: gh pr merge --merge --auto "${{ steps.cpr.outputs.pull-request-number }}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}