Creates Batch Release for cupertino_ui #12
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: "Creates Batch Release for cupertino_ui" | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # Run every Monday at 8:00 AM. Update cron as needed. | |
| - cron: "0 8 * * 1" | |
| jobs: | |
| dispatch_release_pr: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Repository Dispatch | |
| uses: peter-evans/repository-dispatch@5fc4efd1a4797ddb68ffd0714a238564e4cc0e6f | |
| with: | |
| event-type: batch-release-pr | |
| client-payload: '{"package": "cupertino_ui"}' |