Remove DOI entry from sources.yaml #41
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: Auto Cite | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "_data/sources.yaml" | |
| pull_request: | |
| paths: | |
| - "_data/sources.yaml" | |
| jobs: | |
| update_research: | |
| name: Auto Cite | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.11.12 | |
| - name: Install packages | |
| run: python -m pip install --upgrade --requirement ./auto-cite/requirements.txt | |
| - name: Build updated citations | |
| run: python ./auto-cite/auto-cite.py | |
| - name: Commit updated citations | |
| uses: stefanzweifel/git-auto-commit-action@v4 | |
| with: | |
| file_pattern: "_data/citations.yaml" | |
| commit_message: "Generate citations" | |
| push_options: --force |