added Vahid publications #4
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: Update research data | |
on: | |
push: | |
paths: | |
- "_data/research-input.yml" | |
pull_request: | |
paths: | |
- "_data/research-input.yml" | |
jobs: | |
update_research: | |
name: Update Manubot-generated citations in research data | |
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.7 | |
- name: Install Manubot | |
run: pip install --upgrade manubot | |
- name: Build updated research output file | |
run: python _data/build-research.py | |
- name: Commit new research output file | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
file_pattern: "_data/research-output.yml" | |
commit_message: "Update Manubot-generated citations in research data" |