Skip to content

fix 0 commit

fix 0 commit #18

Workflow file for this run

name: Notify IRC
on:
push:
branches:
- main # Or your desired branch
jobs:
notify-irc:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set execute permissions
run: chmod +x .github/workflows/notify-irc.sh
- name: Generate notification message
id: notify
run: |
echo "message=$(.github/workflows/notify-irc.sh "$COMMITS_JSON" "$GITHUB_ACTOR" "$GITHUB_REF_NAME" "$GITHUB_COMPARE_URL")" >> $GITHUB_OUTPUT
- name: Notify IRC
uses: rectalogic/notify-irc@v1
with:
channel: "#OpenZFS-Windows"
server: "irc.libera.chat"
nickname: "zfs-consus"
message: "${{ steps.notify.outputs.message }}"