mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 16:38:01 +00:00
9512520b95
This should be using the most recent version of s3krit's github action otherwise it will fail
19 lines
702 B
YAML
19 lines
702 B
YAML
name: Pushes release updates to a pre-defined Matrix room
|
|
on:
|
|
release:
|
|
types:
|
|
- edited
|
|
- prereleased
|
|
- published
|
|
jobs:
|
|
ping_matrix:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: send message
|
|
uses: s3krit/matrix-message-action@v0.0.3
|
|
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"
|