Skip to content

Commit 3e4f02b

Browse files
authored
Update notify-downstream.yaml (#2371)
1 parent af17fb2 commit 3e4f02b

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/notify-downstream.yaml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,22 @@ on:
44
branches: [ develop ]
55
concurrency: ${{ github.workflow }}-${{ github.ref }}
66
jobs:
7-
notify-matrix-react-sdk:
7+
notify-downstream:
8+
continue-on-error: true
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
include:
13+
- repo: vector-im/element-web
14+
event: element-web-notify
15+
- repo: matrix-org/matrix-react-sdk
16+
event: upstream-sdk-notify
17+
818
runs-on: ubuntu-latest
919
steps:
1020
- name: Notify matrix-react-sdk repo that a new SDK build is on develop so it can CI against it
1121
uses: peter-evans/repository-dispatch@v1
1222
with:
1323
token: ${{ secrets.ELEMENT_BOT_TOKEN }}
14-
repository: vector-im/element-web
15-
event-type: upstream-sdk-notify
24+
repository: ${{ matrix.repo }}
25+
event-type: ${{ matrix.event }}

0 commit comments

Comments
 (0)