Push submodule update dispatch event to droidboot_device_* repo #94
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: Push submodule update dispatch event to droidboot_device_* repo | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| dispatch: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| repo: [ | |
| "Android-Boot-Manager/droidboot_device_volla_yggdrasil", | |
| "Android-Boot-Manager/droidboot_device_planet_astroslide", | |
| "Android-Boot-Manager/droidboot_device_generic_u-boot", | |
| "Android-Boot-Manager/droidboot_device_planet_cosmocom", | |
| "Android-Boot-Manager/droidboot_device_planet_geminipda", | |
| "Android-Boot-Manager/droidboot_device_volla_mimameid", | |
| "Android-Boot-Manager/droidboot_device_yggdrasilx", | |
| "Android-Boot-Manager/droidboot_device_gigaset_gx4", | |
| "Android-Boot-Manager/droidboot_device_qcom_lk2nd" | |
| ] | |
| steps: | |
| - name: Notify droidboot_device_* repo | |
| uses: peter-evans/repository-dispatch@v2 | |
| with: | |
| token: ${{ secrets.PAT }} | |
| repository: ${{ matrix.repo }} | |
| event-type: submodule-update | |
| client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "module": "Android-Boot-Manager/droidboot_gui", "branch": "main"}' |