Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 459b5cc

Browse files
author
James Salter
authored
Add notify-element-web job (#7062)
This triggers a repository_dispatch event in element-web which allows that repo to run new CI actions for EW with the new SDK code
1 parent 89ef8e9 commit 459b5cc

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/workflows/develop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
end-to-end:
1212
runs-on: ubuntu-latest
13-
env:
13+
env:
1414
PR_NUMBER: ${{github.event.number}}
1515
container: vectorim/element-web-ci-e2etests-env:latest
1616
steps:
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Notify element-web
2+
on:
3+
push:
4+
branches: [develop]
5+
jobs:
6+
notify-element-web:
7+
runs-on: ubuntu-latest
8+
environment: develop
9+
steps:
10+
- name: Notify element-web repo that a new SDK build is on develop
11+
uses: peter-evans/repository-dispatch@v1
12+
with:
13+
token: ${{ secrets.ELEMENT_WEB_NOTIFY_TOKEN }}
14+
repository: vector-im/element-web
15+
event-type: element-web-notify

0 commit comments

Comments
 (0)