Skip to content

fixup! dependency upgrades #41

fixup! dependency upgrades

fixup! dependency upgrades #41

Workflow file for this run

name: "Push Notification"
on: [push, pull_request, create]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: irc push
uses: rectalogic/notify-irc@v1
if: github.event_name == 'push'
with:
server: "irc.chalmers.it"
port: 9999
channel: "#platinumshrimp"
nickname: github-notifier
message: |
${{ github.actor }} pushed ${{ github.event.ref }} ${{ github.event.compare }}
${{ join(github.event.commits.*.message) }}
- name: irc pull request
uses: rectalogic/notify-irc@v1
if: github.event_name == 'pull_request'
with:
server: "irc.chalmers.it"
port: 9999
channel: "#platinumshrimp"
nickname: github-notifier
message: |
${{ github.actor }} opened PR ${{ github.event.html_url }}