π Add webhooks documentation #153
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflows will re-generate the python docs when there are changes on main | |
name: Generate Documentation | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements-dev.txt | |
- name: Run generate-docs | |
run: | | |
make generate-docs | |
- name: Commit files | |
run: | | |
echo ${{ github.ref }} | |
git add docs | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git commit -m "π CI: automated Generate Documentation" -a | exit 0 | |
- name: Push changes | |
if: github.ref == 'refs/heads/main' | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: main |