summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-05-27 09:28:31 +0200
committerFlorian Bruhin <me@the-compiler.org>2021-05-27 09:28:40 +0200
commit7afb9cfd7a8ad8581e88f16fd7db8f92c9e091ed (patch)
tree3632d323895671bcb589159178ac6f2e237d41ff
parent78069fc69b06a75e84a04be6450833c38a2d061d (diff)
downloadqutebrowser-7afb9cfd7a8ad8581e88f16fd7db8f92c9e091ed.tar.gz
qutebrowser-7afb9cfd7a8ad8581e88f16fd7db8f92c9e091ed.zip
ci: Switch to #qutebrowser-bots
(cherry picked from commit f2e322c5814b34d5263de4cf51e5a072d4ee020d)
-rw-r--r--.github/workflows/bleeding.yml4
-rw-r--r--.github/workflows/ci.yml8
-rw-r--r--.github/workflows/docker.yml4
-rw-r--r--.github/workflows/recompile-requirements.yml4
4 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/bleeding.yml b/.github/workflows/bleeding.yml
index 5d6f2b933..5fa400619 100644
--- a/.github/workflows/bleeding.yml
+++ b/.github/workflows/bleeding.yml
@@ -99,7 +99,7 @@ jobs:
if: "needs.tests.result == 'success' && needs.pyinstaller.result == 'success'"
with:
server: irc.libera.chat
- channel: '#qutebrowser-dev'
+ channel: '#qutebrowser-bots'
nickname: qutebrowser-bot
message: "[${{ github.workflow }}] \u00033Success:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})"
- name: Send non-success IRC notification
@@ -107,7 +107,7 @@ jobs:
if: "needs.tests.result != 'success' || needs.pyinstaller.result != 'success'"
with:
server: irc.libera.chat
- channel: '#qutebrowser-dev'
+ channel: '#qutebrowser-bots'
nickname: qutebrowser-bot
message: "[${{ github.workflow }}] \u00034FAIL:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})\n
tests: ${{ needs.tests.result }}, pyinstaller: ${{ needs.pyinstaller.result }}"
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index eed5d0b65..131c884eb 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -216,7 +216,7 @@ jobs:
if: "needs.linters.result == 'success' && needs.tests.result == 'success' && needs.tests-docker.result == 'success' && needs.codeql.result == 'success'"
with:
server: irc.libera.chat
- channel: '#qutebrowser-dev'
+ channel: '#qutebrowser-bots'
nickname: qutebrowser-bot
message: "[${{ github.workflow }}] \u00033Success:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})"
- name: Send failure IRC notification
@@ -224,7 +224,7 @@ jobs:
if: "needs.linters.result == 'failure' || needs.tests.result == 'failure' || needs.tests-docker.result == 'failure' || needs.codeql.result == 'failure'"
with:
server: irc.libera.chat
- channel: '#qutebrowser-dev'
+ channel: '#qutebrowser-bots'
nickname: qutebrowser-bot
message: "[${{ github.workflow }}] \u00034FAIL:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})\n
linters: ${{ needs.linters.result }}, tests: ${{ needs.tests.result }}, tests-docker: ${{ needs.tests-docker.result }}, codeql: ${{ needs.codeql.result }}"
@@ -233,7 +233,7 @@ jobs:
if: "needs.linters.result == 'skipped' || needs.tests.result == 'skipped' || needs.tests-docker.result == 'skipped' || needs.codeql.result == 'skipped'"
with:
server: irc.libera.chat
- channel: '#qutebrowser-dev'
+ channel: '#qutebrowser-bots'
nickname: qutebrowser-bot
message: "[${{ github.workflow }}] \u00038Skipped:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})"
- name: Send cancelled IRC notification
@@ -241,7 +241,7 @@ jobs:
if: "needs.linters.result == 'cancelled' || needs.tests.result == 'cancelled' || needs.tests-docker.result == 'cancelled' || needs.codeql.result == 'cancelled'"
with:
server: irc.libera.chat
- channel: '#qutebrowser-dev'
+ channel: '#qutebrowser-bots'
nickname: qutebrowser-bot
message: "[${{ github.workflow }}] \u000314Cancelled:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})\n
linters: ${{ needs.linters.result }}, tests: ${{ needs.tests.result }}, tests-docker: ${{ needs.tests-docker.result }}, codeql: ${{ needs.codeql.result }}"
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 6e1e85657..2ac1bd58f 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -48,7 +48,7 @@ jobs:
if: "needs.docker.result == 'success'"
with:
server: irc.libera.chat
- channel: '#qutebrowser-dev'
+ channel: '#qutebrowser-bots'
nickname: qutebrowser-bot
message: "[${{ github.workflow }}] \u00033Success:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})"
- name: Send non-success IRC notification
@@ -56,6 +56,6 @@ jobs:
if: "needs.docker.result != 'success'"
with:
server: irc.libera.chat
- channel: '#qutebrowser-dev'
+ channel: '#qutebrowser-bots'
nickname: qutebrowser-bot
message: "[${{ github.workflow }}] \u00034FAIL:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})"
diff --git a/.github/workflows/recompile-requirements.yml b/.github/workflows/recompile-requirements.yml
index d930bbe89..00d088da8 100644
--- a/.github/workflows/recompile-requirements.yml
+++ b/.github/workflows/recompile-requirements.yml
@@ -78,7 +78,7 @@ jobs:
if: "needs.update.result == 'success'"
with:
server: irc.libera.chat
- channel: '#qutebrowser-dev'
+ channel: '#qutebrowser-bots'
nickname: qutebrowser-bot
message: "[${{ github.workflow }}] \u00033Success:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})"
- name: Send non-success IRC notification
@@ -86,7 +86,7 @@ jobs:
if: "needs.update.result != 'success'"
with:
server: irc.libera.chat
- channel: '#qutebrowser-dev'
+ channel: '#qutebrowser-bots'
nickname: qutebrowser-bot
message: "[${{ github.workflow }}] \u00034FAIL:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})\n
linters: ${{ needs.linters.result }}, tests: ${{ needs.tests.result }}, tests-docker: ${{ needs.tests-docker.result }}, codeql: ${{ needs.codeql.result }}"