Skip to content

add mimic ppg dataset #3

add mimic ppg dataset

add mimic ppg dataset #3

name: Regenerate PPG datasets webpage
on:
push:
paths:
- "src/datasets_info.json"
- "src/template_webpage.html"
- "src/webpage_generator.py"
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Run webpage generator
run: |
python src/webpage_generator.py
- name: Commit and push generated page
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add docs/index.html
git diff --cached --quiet || git commit -m "Auto-regenerate PPG datasets webpage"
git push