-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (51 loc) · 1.62 KB
/
notebooks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
name: Run Notebooks
on:
schedule:
- cron: '0 */6 * * *' # Every 6 hours
workflow_dispatch: # Manual trigger
jobs:
run-notebooks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install papermill pyyaml
- name: Run notebooks
env:
# Add any required environment variables here
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cd notebooks
for notebook in *.ipynb; do
if [ -f "$notebook" ]; then
echo "Running $notebook"
python ../notebook_runner.py "$notebook"
fi
done
- name: Configure Git
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- name: Commit and push changes
run: |
if [[ -n $(git status --porcelain) ]]; then
git add data/ ui/data/
git commit -m "chore: update notebook data [skip ci]"
# Try to push, if fails due to remote changes, rebase and try again
if ! git push; then
git pull --rebase
git push
fi
else
echo "No changes to commit"
fi