Skip to content

openzfsonwindows/notify-irc

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace
 
 

Repository files navigation

Send Notification Message to IRC

Usage

See action.yml For comprehensive list of options.

This is a fork of https://github.com/rectalogic/notify-irc but I had issues getting it to send multiline messages. This has been tweaked to issue IRC notifications mimicking the style of n.tkte.ch's Notifico.

Jorgen Lundman [email protected]

Example, send notifications to Libera Chat IRC channel:

name: Notify IRC

on:
  push:
  issues:
    types:
      - opened
      - edited
      - closed
  issue_comment:
  pull_request:
  discussion:
    types:
      - created
      - edited
      - closed
      - answered
  discussion_comment:
  create:
  delete:

jobs:
  notify-irc:
    runs-on: ubuntu-latest

    steps:
      - name: Notify IRC
        uses: openzfsonwindows/notify-irc@v1
        with:
          channel: "#yourchannel"
          server: "irc.server.net"
          nickname: "irc-bot-name"
          ansicolor: "true"
          eventpath: ${{ github.event_path }}

Screenshot

Packages

No packages published

Languages

  • Python 93.5%
  • Shell 5.4%
  • Dockerfile 1.1%