This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 828
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
James Salter
authored
Nov 1, 2021
1 parent
89ef8e9
commit 459b5cc
Showing
2 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |