This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
Overcharging on limited_teleport_assets
#14658
Workflow file for this run
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 | |
steps: | |
- name: Notify devops | |
if: github.event.label.name == 'A1-needsburnin' | |
uses: s3krit/[email protected] | |
with: | |
room_id: ${{ secrets.POLKADOT_DEVOPS_MATRIX_ROOM_ID }} | |
access_token: ${{ secrets.POLKADOT_DEVOPS_MATRIX_ACCESS_TOKEN }} | |
message: "@room Burn-in request received for the following PR: ${{ github.event.pull_request.html_url }}" | |
server: "matrix.parity.io" |