Skip to content

Commit

Permalink
[github] re-enable PR IRC notifications on #p5p
Browse files Browse the repository at this point in the history
  • Loading branch information
mauke committed Dec 4, 2024
1 parent ac92cce commit 30a8f95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/irc-notifications.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
- name: irc opened pull request
uses: rectalogic/notify-irc@v2
if: vars.NOTIFY_IRC_P5P == 'true' && github.event_name == 'pull_request' && github.event.action == 'opened'
if: github.event_name == 'pull_request' && github.event.action == 'opened'
with:
server: ${{ env.server }}
port: ${{ env.port }}
Expand All @@ -166,7 +166,7 @@ jobs:
- name: irc merged pull request
uses: rectalogic/notify-irc@v2
if: vars.NOTIFY_IRC_P5P == 'true' && github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true
if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true
with:
server: ${{ env.server }}
port: ${{ env.port }}
Expand All @@ -177,7 +177,7 @@ jobs:
- name: irc closed pull request
uses: rectalogic/notify-irc@v2
if: vars.NOTIFY_IRC_P5P == 'true' && github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == false
if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == false
with:
server: ${{ env.server }}
port: ${{ env.port }}
Expand Down

0 comments on commit 30a8f95

Please sign in to comment.