Delete irc.yml

Remove IRC notification bot that was borrowed from the jackaudio repo
This commit is contained in:
Nedko Arnaudov 2022-08-14 19:30:15 +03:00 committed by GitHub
parent 35f4101850
commit 9a6e83a3dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
name: irc
on: [push]
jobs:
notification:
runs-on: ubuntu-latest
name: IRC notification
steps:
- name: Format message
id: message
run: |
message="${{ github.actor }} pushed $(echo '${{ github.event.commits[0].message }}' | head -n 1) ${{ github.event.commits[0].url }}"
echo ::set-output name=message::"${message}"
- name: IRC notification
uses: Gottox/irc-message-action@v2
with:
channel: '#jack'
nickname: jackaudio-bot
message: ${{ steps.message.outputs.message }}