lrn2play #456
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "IRC Notification on push" | |
on: | |
- "push" | |
- "issues" | |
jobs: | |
notification: | |
runs-on: "ubuntu-latest" | |
name: "IRC Notifications" | |
steps: | |
- name: "IRC notification" | |
if: ${{ github.repository == 'tykling/ansible-roles' }} | |
uses: "Gottox/irc-message-action@v2" | |
with: | |
server: "ircd.tyknet.dk" | |
channel: "#tykling/ansible-roles" | |
nickname: "ansibot" | |
message: |- | |
${{ github.actor }} pushed new commits: ${{ github.event.compare }} - latest commit msg: "${{ github.event.head_commit.message }}" |