We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c1dc48 commit 0d536ebCopy full SHA for 0d536eb
.github/workflows/notify-irc.yaml
@@ -0,0 +1,13 @@
1
+name: Notify IRC
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+jobs:
7
+ notify:
8
+ name: Send request
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - run: |
12
+ 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
13
+ exit 0
0 commit comments