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 codepull/21833/head
parent
89ef8e9441
commit
459b5ccaf9
|
@ -10,7 +10,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
end-to-end:
|
end-to-end:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
PR_NUMBER: ${{github.event.number}}
|
PR_NUMBER: ${{github.event.number}}
|
||||||
container: vectorim/element-web-ci-e2etests-env:latest
|
container: vectorim/element-web-ci-e2etests-env:latest
|
||||||
steps:
|
steps:
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
name: Notify element-web
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [develop]
|
||||||
|
jobs:
|
||||||
|
notify-element-web:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment: develop
|
||||||
|
steps:
|
||||||
|
- name: Notify element-web repo that a new SDK build is on develop
|
||||||
|
uses: peter-evans/repository-dispatch@v1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.ELEMENT_WEB_NOTIFY_TOKEN }}
|
||||||
|
repository: vector-im/element-web
|
||||||
|
event-type: element-web-notify
|
Loading…
Reference in New Issue