From 4fa9af7561b5c690493b335a60fe63ee86c21389 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Thu, 19 Dec 2019 17:49:57 +0100 Subject: [PATCH] .github/workflows: Use Gottox/irc-message-action to avoid the docker overhead --- .github/workflows/notify-irc.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/notify-irc.yaml b/.github/workflows/notify-irc.yaml index 1cd52761b8..75f6eb235e 100644 --- a/.github/workflows/notify-irc.yaml +++ b/.github/workflows/notify-irc.yaml @@ -13,7 +13,7 @@ jobs: timeout-minutes: 3 steps: - name: irc push - uses: rectalogic/notify-irc@v1 + uses: Gottox/irc-message-action@master if: github.event_name == 'push' && github.repository == 'void-linux/void-packages' with: notice: true @@ -23,7 +23,7 @@ jobs: tls: true message: "${{ github.actor }} pushed ${{ github.event.compare }}" - name: irc pull request - uses: rectalogic/notify-irc@v1 + uses: Gottox/irc-message-action@master if: github.event_name == 'pull_request' && github.repository == 'void-linux/void-packages' with: notice: true @@ -33,7 +33,7 @@ jobs: tls: true message: "${{ github.actor }} ${{ github.event.action }} pull request “${{ github.event.pull_request.title }}” ${{ github.event.pull_request.html_url }}" - name: irc issue - uses: rectalogic/notify-irc@v1 + uses: Gottox/irc-message-action@master if: github.event_name == 'issues' && github.repository == 'void-linux/void-packages' with: notice: true