Page Builder API for extension library elements... and a bit more #3184
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
name: Update config.pyi | |
on: | |
pull_request: | |
branches: [ develop, release/* ] | |
jobs: | |
generate-pyi: | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Update config.pyi | |
run: python taipy/common/config/stubs/generate_pyi.py | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Update config.pyi" |