Update func-python version in embedded templates #28
This file contains hidden or 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 func-python version in embedded templates | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| on: | |
| schedule: | |
| - cron: "0 6 * * *" # Daily at 06:00. | |
| workflow_dispatch: # Manual workflow trigger | |
| jobs: | |
| update: | |
| name: Update func-python version | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: knative/actions/setup-go@main | |
| - name: Run update script | |
| run: go run ./hack/cmd/update-python-platform/main.go | |
| - name: Run make generate | |
| run: make generate/zz_filesystem_generated.go | |
| - name: Run smoke tests | |
| run: make test-python | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| token: ${{ github.token }} | |
| commit-message: 'chore: update func-python version' | |
| title: 'chore: update func-python version' | |
| body: | | |
| This PR updates the func-python version in the Python scaffolding templates to the latest version available on PyPI. | |
| This PR was automatically generated by the [update-python-platform workflow](https://github.com/${{ github.repository }}/actions/workflows/update-python-platform.yaml). | |
| branch: update-func-python | |
| delete-branch: true | |
| committer: Knative Automation <automation@knative.team> | |
| author: Knative Automation <automation@knative.team> | |
| assignees: gauron99, matejvasek, lkingland | |
| base: main |