docs: wait for search box before github icon insert #88
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: Notify Downstream Repos | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| notify: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| repo: | |
| - SleakEngine-Empty | |
| - SleakEngine-FPP | |
| steps: | |
| - name: Trigger submodule update in ${{ matrix.repo }} | |
| run: | | |
| gh api repos/CanReader/${{ matrix.repo }}/dispatches \ | |
| -f event_type=engine-updated \ | |
| -f "client_payload[sha]=${{ github.sha }}" \ | |
| -f "client_payload[ref]=${{ github.ref }}" | |
| env: | |
| GH_TOKEN: ${{ secrets.DISPATCH_TOKEN }} |