check-config-pyi.yml 534 B

1234567891011121314151617181920212223
  1. name: Update config.pyi
  2. on:
  3. pull_request:
  4. branches: [ develop, release/* ]
  5. jobs:
  6. generate-pyi:
  7. timeout-minutes: 20
  8. runs-on: ubuntu-latest
  9. permissions:
  10. contents: write
  11. steps:
  12. - uses: actions/checkout@v4
  13. - uses: actions/setup-python@v5
  14. with:
  15. python-version: '3.11'
  16. - name: Update config.pyi
  17. run: python taipy/common/config/stubs/generate_pyi.py
  18. - uses: stefanzweifel/git-auto-commit-action@v5
  19. with:
  20. commit_message: "Update config.pyi"