void-packages/.github/workflows/notify-push.yaml
2020-12-07 19:46:12 +01:00

30 lines
822 B
YAML

name: "Push Notification"
on:
push:
branches: [master]
jobs:
ircnotify:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- name: Shorten URL
id: shortener
if: github.repository == 'void-linux/void-packages'
uses: Gottox/url-shortener-action@master
with:
url: "${{ github.event.compare }}"
- name: "Push Notification"
uses: Gottox/irc-message-action@main
continue-on-error: true
if: github.repository == 'void-linux/void-packages'
with:
channel: "#xbps"
nickname: void-packages
sasl_password: ${{ secrets.freenode_password_void_packages }}
tls: true
message: >-
${{ github.actor }}
pushed
${{ steps.shortener.outputs.short_url }}