Skip to content

Merge pull request #156 from data-to-insight/bug/workshop-baseline-re… #54

Merge pull request #156 from data-to-insight/bug/workshop-baseline-re…

Merge pull request #156 from data-to-insight/bug/workshop-baseline-re… #54

Workflow file for this run

name: Update CHANGELOG
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pandas tabulate
- name: Update CHANGELOG
run: python tools/admin/update_changelog.py
- name: Commit and push if it changed
run: |
git diff
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m "Update CHANGELOG.md" -a || echo "No changes to commit"
git push