void-packages/.github/workflows/notify-issue.yaml

25 lines
678 B
YAML

name: "Issue Notification"
on:
issues:
types: [opened, closed]
jobs:
ircnotify:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: "Issue Notification"
uses: Gottox/irc-message-action@master
if: github.repository == 'void-linux/void-packages'
with:
notice: true
channel: "#xbps"
nickname: void-packages
sasl_password: ${{ secrets.freenode_password_void_packages }}
tls: true
message: >-
${{ github.actor }}
${{ github.event.action }} issue
“${{ github.event.issue.title }}”
${{ github.event.issue.html_url }}