mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 07:37:57 +00:00
ece0364170
* add burnin-label-notification.yml * fix burnin-label-notification.yml * fix burnin-label-notification.yml * fix burnin-label-notification.yml * fix burnin-label-notification.yml * Update .github/workflows/burnin-label-notification.yml Co-authored-by: Benjamin Kampmann <ben@gnunicorn.org> Co-authored-by: Benjamin Kampmann <ben@gnunicorn.org> Co-authored-by: Gav Wood <gavin@parity.io>
18 lines
615 B
YAML
18 lines
615 B
YAML
name: Notify devops when burn-in label applied
|
|
on:
|
|
pull_request:
|
|
types: [labeled]
|
|
|
|
jobs:
|
|
notify-devops:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Notify devops
|
|
if: github.event.label.name == 'A1-needsburnin'
|
|
uses: s3krit/matrix-message-action@v0.0.2
|
|
with:
|
|
room_id: ${{ secrets.POLKADOT_DEVOPS_MATRIX_ROOM_ID }}
|
|
access_token: ${{ secrets.POLKADOT_DEVOPS_MATRIX_ACCESS_TOKEN }}
|
|
message: "@room Burn-in request received for [${{ github.event.pull_request.title }}](${{ github.event.pull_request.html_url }})"
|
|
server: "matrix.parity.io"
|