Update dependency @types/node to v18.19.69 (#4603) #1825
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: 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 matrix-react-sdk repo that a new SDK build is on develop so it can CI against it | |
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # v3 | |
with: | |
token: ${{ secrets.ELEMENT_BOT_TOKEN }} | |
repository: ${{ matrix.repo }} | |
event-type: ${{ matrix.event }} |