Skip to content

Commit

Permalink
ci: github action to notify releases via irc
Browse files Browse the repository at this point in the history
  • Loading branch information
fmartingr committed Feb 15, 2022
1 parent 3c8a66f commit feb150f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release_notify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release notifier

on:
release:
types: [published]

jobs:
notify:
runs-on: ubuntu-latest

steps:
- name: Notify IRC
uses: Gottox/irc-message-action@v2
with:
server: "irc.libera.chat"
channel: "#shiori"
nickname: ShioriBot
tls: true
sasl_password: ${{ secrets.IRC_SHIORIBOT_PWD }}
message: "New release: ${{ github.event.repository.full_name }}@${{ github.event.release.name }}: ${{ github.event.release.html_url }}"

0 comments on commit feb150f

Please sign in to comment.