Skip to content

Merge pull request #77 from ctr26/docs #83

Merge pull request #77 from ctr26/docs

Merge pull request #77 from ctr26/docs #83

Workflow file for this run

name: jupytext-changes
on:
push:
# pull_request:
jobs:
jupytext:
runs-on: ubuntu-latest
steps:
# Checkout
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Install Packages if changed files
run: |
pip install jupytext
- name: Synch changed files
run: |
jupytext --use-source-timestamp --sync scripts/*.py
# Auto commit any updated notebook files
- uses: stefanzweifel/git-auto-commit-action@v4
with:
# This would be more useful if the git hash were referenced?
commit_message: "Auto-commit updated notebooks"