SENATOROV #2
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: SENATOROV | |
permissions: | |
contents: write # Grant write access to the repository contents | |
on: | |
pull_request: | |
branches: | |
- "**" | |
schedule: | |
- cron: "0 0 * * *" # Run every day | |
workflow_dispatch: | |
create: | |
delete: | |
release: | |
issues: | |
pull_request_review: | |
pull_request_review_comment: | |
jobs: | |
convert_notebooks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install jupytext | |
- name: Convert .ipynb to .py | |
run: | | |
jupytext --to py $(git ls-files '*.ipynb') | |
- name: Commit and push changes | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
run: | | |
git config --global user.name "GitHub Actions" | |
git config --global user.email "[email protected]" | |
git remote set-url origin https://x-access-token:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository }} | |
git pull | |
git add . | |
git diff --quiet || (git commit -m "Convert notebooks to Python scripts" && git push) | |