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 eb95662
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/notify-irc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Notify IRC
on: push
jobs:
notify:
name: Send request
runs-on: ubuntu-latest
steps:
- run: |
curl "${{ secrets.IRC_NOTIFY_URL }}" -F target=#gonic -F 'message=new commit from ${{ github.event.head_commit.author.username }} "${{ github.event.head_commit.message }}"' >/dev/null 2>&1
exit 0

0 comments on commit eb95662

Please sign in to comment.