Skip to content

Commit 30a8f95

Browse files
committed
[github] re-enable PR IRC notifications on #p5p
1 parent ac92cce commit 30a8f95

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/irc-notifications.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
156156
- name: irc opened pull request
157157
uses: rectalogic/notify-irc@v2
158-
if: vars.NOTIFY_IRC_P5P == 'true' && github.event_name == 'pull_request' && github.event.action == 'opened'
158+
if: github.event_name == 'pull_request' && github.event.action == 'opened'
159159
with:
160160
server: ${{ env.server }}
161161
port: ${{ env.port }}
@@ -166,7 +166,7 @@ jobs:
166166
167167
- name: irc merged pull request
168168
uses: rectalogic/notify-irc@v2
169-
if: vars.NOTIFY_IRC_P5P == 'true' && github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true
169+
if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true
170170
with:
171171
server: ${{ env.server }}
172172
port: ${{ env.port }}
@@ -177,7 +177,7 @@ jobs:
177177
178178
- name: irc closed pull request
179179
uses: rectalogic/notify-irc@v2
180-
if: vars.NOTIFY_IRC_P5P == 'true' && github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == false
180+
if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == false
181181
with:
182182
server: ${{ env.server }}
183183
port: ${{ env.port }}

0 commit comments

Comments
 (0)