Skip to content

Commit

Permalink
notify irc on new commits
Browse files Browse the repository at this point in the history
  • Loading branch information
sentriz committed Sep 15, 2023
1 parent 4c1dc48 commit 0d536eb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/notify-irc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Notify IRC
on:
push:
branches:
- master
jobs:
notify:
name: Send request
runs-on: ubuntu-latest
steps:
- run: |
curl "${{ secrets.IRC_NOTIFY_URL }}" -F target=#gonic -F 'message=push to master @${{ github.event.head_commit.author.username }} "${{ github.event.head_commit.message }}"' >/dev/null 2>&1
exit 0

0 comments on commit 0d536eb

Please sign in to comment.