Skip to content

run quant_scholar

run quant_scholar #165

Workflow file for this run

name: run quant_scholar
on:
schedule:
- cron: '0 0 */2 * *' # Runs at 00:00 UTC, every 2 days
workflow_dispatch:
jobs:
update-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo-b
uses: actions/checkout@v3
with:
repository: LLMQuant/quant-wiki
ssh-key: ${{ secrets.DEPLOY_KEY }}
- name: Fetch wiki/index.md from quant-scholar
run: |
curl -o index.md https://raw.githubusercontent.com/LLMQuant/quant-scholar/main/wiki/index.md
- name: Replace index.md with wiki/index.md
run: |
mv index.md docs/scholar/index.md
- name: Commit and push changes
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "actions@github.com"
git add docs/scholar/index.md
git commit -m "[Workflow] Automated update of paper list from quant-scholar"
git push