Add ability to override texture format in ExternalTexture (#1443) #419
This file contains 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: Dispatch master branch update | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
dispatch: | |
name: Dispatch ${{ github.sha }} | |
runs-on: windows-2019 | |
strategy: | |
matrix: | |
repo: ['BabylonJS/BabylonReactNative'] | |
steps: | |
- name: Repository Dispatch | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
repository: ${{ matrix.repo }} | |
event-type: babylonnative-master-update | |
client-payload: '{ "sha": "${{ github.sha }}" }' |