bibtex #3
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: bibtex | |
on: | |
workflow_dispatch: | |
jobs: | |
bibtex_update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- name: Install packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
pip install bibtexparser | |
- name: Run script | |
run: python tools/build_config/updateBibtex.py --bibtex-input docs/sumo.bib --bibtex-output docs/sumo.bib --cited-works "b1914c912dea62703856d89fe3724675a6139b71" "0e62ded610aeb17cc65f9f7159477e48248a98a2" --min-citations 100 --exclude-media "SUMO Conference Proceedings" "International Conference on Simulation of Urban Mobility" "arXiv.org" | |
- name: Pull request | |
run: | | |
gh_pr_up() { gh pr create $* || gh pr edit $* } | |
gh_pr_up --title "Bibtex update" --body "Update of bibtex file with SemanticScholar data" |