This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
Bump actions/setup-node from 3.8.1 to 4.0.0 #15059
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
name: Notify devops when burn-in label applied | |
on: | |
pull_request: | |
types: [labeled] | |
jobs: | |
notify-devops: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
channel: | |
- name: 'Team: DevOps' | |
room: '!lUslSijLMgNcEKcAiE:parity.io' | |
steps: | |
- name: Send Matrix message to ${{ matrix.channel.name }} | |
if: startsWith(github.event.label.name, 'A1-') | |
uses: s3krit/matrix-message-action@70ad3fb812ee0e45ff8999d6af11cafad11a6ecf # v0.0.3 | |
with: | |
room_id: ${{ matrix.channel.room }} | |
access_token: ${{ secrets.RELEASENOTES_MATRIX_V2_ACCESS_TOKEN }} | |
server: m.parity.io | |
message: | | |
@room Burn-in request received for the following PR: ${{ github.event.pull_request.html_url }} |