Add Lenka Zdeborova as speaker #81
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
| on: | |
| push: | |
| branches: ["main"] | |
| jobs: | |
| ping_main: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger build of unified main conference website deployment | |
| run: | | |
| curl -X POST -H "Authorization: token ${{ secrets.MAIN_PAT_TOKEN }}" \ | |
| -H "Accept: application/vnd.github.v3+json" \ | |
| https://api.github.com/repos/mlinpl/conference.mlinpl.org/dispatches \ | |
| -d '{ | |
| "event_type": "submodule_update", | |
| "client_payload": { | |
| "repository": "${{ github.repository }}", | |
| "commit_sha": "${{ github.sha }}", | |
| "message": "Triggered by submodule update in ${{ github.event.repository.name }}" | |
| } | |
| }' |