SemanticScholar #39
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: SemanticScholar | |
on: | |
schedule: | |
- cron: "0 0 * * 0" | |
workflow_dispatch: | |
jobs: | |
semantic: | |
name: Semantic Scholar | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@main | |
- uses: actions/setup-node@master | |
with: | |
node-version: 18.x | |
- name: Install | |
run: | | |
cd tools/semanticScholar | |
yarn | |
cd - | |
- name: Run | |
run: node tools/semanticScholar/index.js | |
- name: Update articles.json | |
run: | | |
git config --global user.name "FreeFEM bot" | |
git config --global user.email "bot@freefem.org" | |
git add data/articles.json | |
git commit -m"[BOT] update articles.json" | |
git push |