-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (46 loc) · 1.46 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
---
name: Run Notebooks
on:
schedule:
- cron: '0 */1 * * *' # Every hour
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: |
cd notebooks
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run notebooks
env:
# Add any required environment variables here
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PANDAOPS_CLICKHOUSE_URL: ${{ secrets.PANDAOPS_CLICKHOUSE_URL }}
run: |
./run_notebook.sh
- 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/ notebooks/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