Testing IRC annouce via github actions #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} | |