Skip to content

run sync_openalex_affiliations_github_issues.py #1

run sync_openalex_affiliations_github_issues.py

run sync_openalex_affiliations_github_issues.py #1

name: run sync_openalex_affiliations_github_issues.py
on:
schedule:
- cron: "0 2 * * *" # Every day at 2 AM
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: "3.10" # install the python version needed
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: execute python script # run sync_openalex_affiliations_github_issues.py
env:
SOME_SECRET: ${{ secrets.SOME_SECRET }}
run: python sync_openalex_affiliations_github_issues.py
# - name: commit files
# run: |
# git config --local user.email "[email protected]"
# git config --local user.name "GitHub Action"
# git add -A
# git diff-index --quiet HEAD || (git commit -a -m "updated logs" --allow-empty)
# - name: push changes
# uses: ad-m/[email protected]
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# branch: main