diff --git a/.github/workflows/irc_notify.yml b/.github/workflows/irc_notify.yml new file mode 100644 index 0000000..3e6fe65 --- /dev/null +++ b/.github/workflows/irc_notify.yml @@ -0,0 +1,45 @@ +# send build notifications to the #odis IRC channel +# homepage: https://github.com/marketplace/actions/notify-irc + +name: "IRC Push Notification" +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + irc_notify: + runs-on: ubuntu-latest + #if: github.repository == 'iodepo/odis-in' + steps: + - name: irc push + uses: rectalogic/notify-irc@v2 + if: github.event_name == 'push' + with: + channel: "#odis" + server: "irc.libera.chat" + nickname: odis-github-notifier + message: | + ${{ github.actor }} pushed ${{ github.event.ref }} ${{ github.event.compare }} + ${{ join(github.event.commits.*.message) }} + - name: irc pull request + uses: rectalogic/notify-irc@v2 + if: github.event_name == 'pull_request' + with: + channel: "#odis" + server: "irc.libera.chat" + nickname: odis-github-notifier + message: | + ${{ github.actor }} opened PR ${{ github.event.pull_request.html_url }} + - name: irc tag created + uses: rectalogic/notify-irc@v2 + if: github.event_name == 'create' && github.event.ref_type == 'tag' + with: + channel: "#odis" + server: "irc.libera.chat" + nickname: odis-github-notifier + message: | + ${{ github.actor }} tagged ${{ github.repository }} ${{ github.event.ref }}