From 70806b303c9cb51484a82b64502cd8743f708570 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 6 Jul 2020 13:54:53 +0200 Subject: [PATCH] ci: Remove colors from IRC output Doesn't seem to work like this... --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4523504d1..da3436aa1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -199,7 +199,7 @@ jobs: channel: '#qutebrowser-dev' nickname: qutebrowser-bot message: |- - \0033[${{ github.workflow }}] Success: ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} triggered by ${{ github.actor }}\003 + [${{ github.workflow }}] Success: ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} triggered by ${{ github.actor }} linters: ${{ needs.linters.result }}, tests: ${{ needs.tests.result }}, tests-docker: ${{ needs.tests-docker.result }}, codeql: ${{ needs.codeql.result }} - name: Send non-success IRC notification uses: Gottox/irc-message-action@v1 @@ -209,5 +209,5 @@ jobs: channel: '#qutebrowser-dev' nickname: qutebrowser-bot message: |- - \0034[${{ github.workflow }}] ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} triggered by ${{ github.actor }}\003 + [${{ github.workflow }}] FAIL: ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} triggered by ${{ github.actor }} linters: ${{ needs.linters.result }}, tests: ${{ needs.tests.result }}, tests-docker: ${{ needs.tests-docker.result }}, codeql: ${{ needs.codeql.result }}