Skip to content

Commit 9ad8b22

Browse files
committed
Remove IRC notification from Github actions
Looks like the CI runners are blocked: ``` ERROR:NotifyIRC:freegamedev:Encountered error on socket. pydle.features.rfc1459.protocol.ServerError: Your IP 20.161.60.16 is listed in DroneBL. For assistance, see http://dronebl.org/lookup?ip=20.161.60.16 ``` The IRC is pretty much dead anyway, so not a huge loss.
1 parent 1a0444f commit 9ad8b22

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,6 @@ jobs:
5252
CXX: ${{ matrix.compiler.cxx }}
5353
run: cmake . && make
5454

55-
- name: IRC notifications
56-
if: github.repository_owner == 'flareteam' && steps.build.outcome != 'success'
57-
continue-on-error: true
58-
uses: rectalogic/notify-irc@v2
59-
with:
60-
server: 'irc.freegamedev.net'
61-
port: 6697
62-
channel: '#flarerpg'
63-
nickname: 'flareteam-github'
64-
message: "${{ github.repository }} (${{ github.sha }}): ${{ matrix.compiler.cxx }} build failed. ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
65-
6655
- name: Check Status
6756
if: steps.build.outcome != 'success'
6857
run: exit 1
@@ -80,18 +69,3 @@ jobs:
8069
8170
- name: Run cppcheck
8271
run: cppcheck --quiet --verbose --enable=all `git ls-files src/\*.cpp`
83-
84-
irc_notification:
85-
needs: build
86-
runs-on: ubuntu-22.04
87-
steps:
88-
- name: IRC notifications
89-
if: github.repository_owner == 'flareteam'
90-
continue-on-error: true
91-
uses: rectalogic/notify-irc@v2
92-
with:
93-
server: 'irc.freegamedev.net'
94-
port: 6697
95-
channel: '#flarerpg'
96-
nickname: 'flareteam-github'
97-
message: "${{ github.repository }} (${{ github.sha }}): Build passed. ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"

0 commit comments

Comments
 (0)