Skip to content

Testing IRC annouce via github actions #1

Testing IRC annouce via github actions

Testing IRC annouce via github actions #1

Workflow file for this run

name: Notify IRC on Push
on:
push:
branches:
- development # Trigger only for the "development" branch
jobs:
notify-irc:
runs-on: ubuntu-latest
steps:
- name: Send IRC notification
uses: rtCamp/action-notify-irc@v1 # Replace with the appropriate action repository
with:
server: "irc.libera.chat" # Replace with your IRC server
port: "6697" # Replace with your IRC server's port
channel: "#OpenZFS-Windows" # Replace with your IRC channel
nick: "ZConsus" # Replace with your desired bot nickname
message: |
New commit pushed to the development branch:
Repository: ${{ github.repository }}
Branch: ${{ github.ref }}
Commit: ${{ github.event.head_commit.message }}
URL: ${{ github.event.head_commit.url }}