mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 21:58:00 +00:00
24 lines
683 B
YAML
24 lines
683 B
YAML
name: Pushes release notes to a Matrix room
|
|
on:
|
|
release:
|
|
types:
|
|
- 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: |
|
|
A (pre)release has been ${{github.event.action}} in **${{github.event.repository.full_name}}:**<br/>
|
|
Release version: [${{github.event.release.tag_name}}](${{github.event.release.html_url}})
|
|
|
|
-----
|
|
|
|
${{github.event.release.body}}
|
|
server: "matrix.parity.io"
|