27 lines
994 B
YAML
27 lines
994 B
YAML
name: Notify Downstream Projects
|
|
on:
|
|
push:
|
|
branches: [develop]
|
|
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
|
permissions: {} # We use ELEMENT_BOT_TOKEN instead
|
|
jobs:
|
|
notify-downstream:
|
|
# Only respect triggers from our develop branch, ignore that of forks
|
|
if: github.repository == 'matrix-org/matrix-js-sdk'
|
|
continue-on-error: true
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- repo: element-hq/element-web
|
|
event: element-web-notify
|
|
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Notify element-web repo that a new SDK build is on develop so it can CI against it
|
|
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v4
|
|
with:
|
|
token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
|
repository: ${{ matrix.repo }}
|
|
event-type: ${{ matrix.event }}
|