mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
3fcf51ee6f
* update release-bot.yml github action * fix release-bot.yml * configure channels
24 lines
1.0 KiB
YAML
24 lines
1.0 KiB
YAML
name: Send new release notification to matrix channels
|
|
on:
|
|
release:
|
|
types:
|
|
- published
|
|
jobs:
|
|
ping_matrix:
|
|
strategy:
|
|
matrix:
|
|
channel:
|
|
- '!LhjZccBOqFNYKLdmbb:polkadot.builders' # #KusamaValidatorLounge:polkadot.builders
|
|
- '!FMwxpQnYhRCNDRsYGI:matrix.parity.io' # #kusama-announcements:matrix.parity.io
|
|
- '!NZrbtteFeqYKCUGQtr:matrix.parity.io' # #polkadotvalidatorlounge:web3.foundation
|
|
- '!UqHPWiCBGZWxrmYBkF:matrix.parity.io' # #polkadot-announcements:matrix.parity.io
|
|
- '!NTogofoetwjbTwOoPi:matrix.parity.io' # Internal release-notes channel
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: s3krit/matrix-message-action@v0.0.3
|
|
with:
|
|
room_id: ${{ matrix.channel }} # heh
|
|
access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }}
|
|
message: "***Polkadot ${{github.event.release.tag_name}} has been released!***<br/>${{github.event.release.html_url}}<br/><br/>${{github.event.release.body}}<br/>"
|
|
server: "matrix.parity.io"
|