Skip to content

Don't error out if no slaves were discovered #95

Don't error out if no slaves were discovered

Don't error out if no slaves were discovered #95

Workflow file for this run

name: Matrix bot
on:
pull_request_target:
types: [opened, closed]
jobs:
new-pr:
if: github.event.action == 'opened' && github.repository == 'ethercrab-rs/ethercrab'
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: send message
uses: s3krit/[email protected]
with:
room_id: ${{ secrets.MATRIX_ROOM_ID }}
access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }}
message:
"New PR: [${{ github.event.pull_request.title }}](${{ github.event.pull_request.html_url
}})"
server: "matrix.org"
merged-pr:
if:
github.event.action == 'closed' && github.event.pull_request.merged == true &&
github.repository == 'ethercrab-rs/ethercrab'
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: send message
uses: s3krit/[email protected]
with:
room_id: ${{ secrets.MATRIX_ROOM_ID }}
access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }}
message:
"PR merged: [${{ github.event.pull_request.title }}](${{
github.event.pull_request.html_url }})"
server: "matrix.org"
abandoned-pr:
if:
github.event.action == 'closed' && github.event.pull_request.merged == false &&
github.repository == 'ethercrab-rs/ethercrab'
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: send message
uses: s3krit/[email protected]
with:
room_id: ${{ secrets.MATRIX_ROOM_ID }}
access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }}
message:
"PR closed without merging: [${{ github.event.pull_request.title }}](${{
github.event.pull_request.html_url }})"
server: "matrix.org"