This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 2 channels to release announcements github action (#1033)
* Add channels to release announcement github action * release-bot.yml: Make all steps a single job
- Loading branch information
Showing
1 changed file
with
18 additions
and
3 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,32 @@ | ||
name: Pushes release updates to a pre-defined Matrix room | ||
name: Push release notes to internal release notes channel | ||
on: | ||
release: | ||
types: | ||
- prereleased | ||
- published | ||
jobs: | ||
ping_matrix: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: send message | ||
- name: Internal Release Notes Channel | ||
uses: s3krit/[email protected] | ||
with: | ||
room_id: ${{ secrets.MATRIX_ROOM_ID }} | ||
access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }} | ||
message: "**${{github.event.repository.full_name}}:** A release has been ${{github.event.action}}<br/>Release version [${{github.event.release.tag_name}}](${{github.event.release.html_url}})<br/><br/>***Description:***<br/>${{github.event.release.body}}<br/>" | ||
server: "matrix.parity.io" | ||
|
||
- name: Validator Lounge | ||
uses: s3krit/[email protected] | ||
with: | ||
room_id: ${{ secrets.VALIDATOR_LOUNGE_MATRIX_ROOM_ID }} | ||
access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }} | ||
message: "***Kusama ${{github.event.release.tag_name}} has been released!***<br/>Please update at your earliest convenience.<br/>${{github.event.release.html_url}}<br/><br/>${{github.event.release.body}}<br/>" | ||
server: "matrix.parity.io" | ||
|
||
- name: Kusama Announcements | ||
uses: s3krit/[email protected] | ||
with: | ||
room_id: ${{ secrets.KUSAMA_ANNOUNCEMENTS_MATRIX_ROOM_ID }} | ||
access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }} | ||
message: "***Kusama ${{github.event.release.tag_name}} has been released!***<br/>Please update at your earliest convenience.<br/>${{github.event.release.html_url}}<br/><br/>${{github.event.release.body}}<br/>" | ||
server: "matrix.parity.io" |