diff --git a/.github/workflows/notify-irc.yml b/.github/workflows/notify-irc.yml new file mode 100644 index 000000000000..457c81ae9986 --- /dev/null +++ b/.github/workflows/notify-irc.yml @@ -0,0 +1,36 @@ + +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: "#OpenZFS-Windows" + server: "irc.libera.chat" + nickname: "zfs-consus" + ansicolor: "true" + eventpath: ${{ github.event_path }} +