Add Python 3.13.5 with configuration and wheel installation scripts #11
Workflow file for this run
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: Quickpick Dispatcher | |
| on: | |
| pull_request: | |
| types: | |
| - closed | |
| branches: | |
| - 'main' | |
| release: | |
| types: | |
| - created | |
| - edited | |
| - prereleased | |
| workflow_dispatch: | |
| jobs: | |
| dispatch_workflow: | |
| if: | | |
| (github.event_name == 'workflow_dispatch') || | |
| (github.event_name == 'pull_request' && github.event.pull_request.merged == true) || | |
| (github.event_name == 'release' && (github.event.action == 'created' || github.event.action == 'edited' || github.event.action == 'prereleased')) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Invoke workflow in another repo with inputs | |
| uses: peter-evans/repository-dispatch@v2 | |
| with: | |
| token: ${{ secrets.GH_PAT }} | |
| repository: Bearsampp/Bearsampp | |
| event-type: module_release_created | |
| client-payload: '{"workflow": "combine_releases.yml"}' |