Skip to content

Merge branch 'main' of https://github.com/SENATOROVAI/python-Tatiana #53

Merge branch 'main' of https://github.com/SENATOROVAI/python-Tatiana

Merge branch 'main' of https://github.com/SENATOROVAI/python-Tatiana #53

Workflow file for this run

name: SENATOROV
permissions:
contents: write # Grant write access to the repository contents
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
schedule:
- cron: "0 0 * * *" # Run every day
workflow_dispatch:
create:
delete:
release:
issues:
pull_request_review:
pull_request_review_comment:
jobs:
ipynb_to_py:
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 commit -m "Convert notebooks to Python scripts"
git push