summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-07-03 16:17:58 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-07-03 18:56:54 +0200
commit8c009998f9e7fb526cc6eee2515a00cf42293d17 (patch)
tree83721cd2e47f5476d53045af9d6875c2ab4735ee
parentabfd47f31b03a6b43fcb111a031f21ffa66780e0 (diff)
downloadqutebrowser-8c009998f9e7fb526cc6eee2515a00cf42293d17.tar.gz
qutebrowser-8c009998f9e7fb526cc6eee2515a00cf42293d17.zip
ci: Try to add IRC notification
-rw-r--r--.github/workflows/ci.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 40293236f..0cfdec9ae 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -179,3 +179,18 @@ jobs:
languages: javascript, python
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
+
+ irc:
+ runs-on: ubuntu-latest
+ needs: [linters, tests, tests-docker, codeql]
+ if: always()
+ steps:
+ - name: Send IRC notification
+ uses: Gottox/irc-message-action@v1
+ with:
+ server: chat.freenode.net
+ channel: '#qutebrowser-dev'
+ nickname: qutebrowser-bot
+ message: |-
+ [${{ github.workflow }}] ${{ 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 }}