Skip to content

chore(Makefile): Adding a self-documenting command and light command … #1

chore(Makefile): Adding a self-documenting command and light command …

chore(Makefile): Adding a self-documenting command and light command … #1

Workflow file for this run

name: Update the UML Diagrams
on:
pull_request:
branches: [main]
paths:
- "pymc_marketing/**"
push:
branches: [main]
paths:
- "pymc_marketing/**"
permissions: write-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Configure Git Identity
run: |
git config user.name "$(git log -n 1 --pretty=format:%an)"
git config user.email "$(git log -n 1 --pretty=format:%ae)"
- name: Update the UML Diagrams
run: |
sudo apt-get update && sudo apt-get install -y graphviz
make uml
- name: Push up the changes
run: |
git add docs/source/uml/*.png
if git diff --staged --exit-code; then
echo "No changes to commit"
else
echo "Committing the changes"
git commit -m "Update UML Diagrams"
git push origin HEAD:${GITHUB_HEAD_REF}
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}