Skip to content

#DtoI-1826 and multiple minor fixes #336

#DtoI-1826 and multiple minor fixes

#DtoI-1826 and multiple minor fixes #336

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-ssd_workflow/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