File tree Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change 5
5
test :
6
6
runs-on : ubuntu-latest
7
7
steps :
8
- - name : irc push
9
- uses : rectalogic/notify-irc@v1
10
- if : github.event_name == 'push'
11
- with :
12
- channel : " #gonzobot-dev"
13
- nickname : tnr-git
14
- server : irc.snoonet.org
15
- sasl_password : ${{ secrets.IRC_PASSWORD }}
16
- message : |
17
- ${{ github.actor }} pushed ${{ github.event.ref }} ${{ github.event.compare }}
18
- ${{ join(github.event.commits.*.message) }}
19
8
- name : irc pull request
20
9
uses : rectalogic/notify-irc@v1
21
10
if : github.event_name == 'pull_request'
25
14
server : irc.snoonet.org
26
15
sasl_password : ${{ secrets.IRC_PASSWORD }}
27
16
message : |
28
- ${{ github.actor }} opened PR ${{ github.event.html_url }}
17
+ ${{ github.actor }} opened PR ${{ github.event.pull_request. html_url }}
29
18
- name : irc tag created
30
19
uses : rectalogic/notify-irc@v1
31
20
if : github.event_name == 'create' && github.event.ref_type == 'tag'
You can’t perform that action at this time.
0 commit comments